1: //TestAnimal.java 3: public class TestAnimal 4: { 5: public static void main(String[] args) 6: { 7: Domestic myDomestic = new Domestic("Fuzzy", 10, "Maddi"); 8: Wild myWild = new Wild("Simba", 6, "Lion"); 10: myDomestic.printInfo(); 11: System.out.println(); 12: myWild.printInfo(); 13: } 14: }