001    package classwork;
002    /**
003     * Tests the SodaCan class.
004     * @author Tom James
005     *
006     */
007    public class SodaTester {
008    
009            /**
010             * @param args
011             */
012            public static void main(String[] args) {
013                    // TODO Auto-generated method stub
014                    SodaCan can = new SodaCan(5,10);
015                    System.out.println(can.getSurfaceArea() + " and " + can.getVolume());
016            }
017    
018    }