/**
 * Test all canines
 */

public class xCanineTest
{
    public static void main (String[ ] args) 
    {

        System.out.println(Animal.PLACE);
        System.out.println();


        Dog magic = new Dog("Dalmation","blackWhite");  //create 2 dogs
        Dog snowy = new Dog("mix breed","white     ");
        System.out.println(magic);                      //call Dog toString()
        System.out.println(snowy);
    
        System.out.println();

        Fox foxxy = new Fox("Near hen house ","red ");  //create 2 foxes
        Fox whity = new Fox("Northern Alaska","snow");
        System.out.println(foxxy);                      //call Fox toString()
        System.out.println(whity);
    }
}