/** * Tests the Dogs system. * @author Bob Futrelle * @version 1.0 7/4/2 */ public class DogTest { public static void main(String[] args) { PetStore store = new PetStore(4); Dog dog1 = store.getDog(2); Dog dog2 = store.getDog(100); dog1.bark(); dog2.bark(); dog1.describe(); dog2.describe(); } } // class DogTest