public void getTypeTest()
 {
     IAnimal target = new Animal("Bob", AnimalTypes.animalTypes.Cat);
     AnimalTypes.animalTypes expected = AnimalTypes.animalTypes.Cat; // TODO: Initialize to an appropriate value
     AnimalTypes.animalTypes actual;
     actual = target.getType();
     Assert.AreEqual(expected, actual);
 }
 public void getTypeTest1()
 {
     string name = string.Empty; // TODO: Initialize to an appropriate value
     AnimalTypes.animalTypes type = new AnimalTypes.animalTypes(); // TODO: Initialize to an appropriate value
     Animal target = new Animal(name, type); // TODO: Initialize to an appropriate value
     AnimalTypes.animalTypes expected = new AnimalTypes.animalTypes(); // TODO: Initialize to an appropriate value
     AnimalTypes.animalTypes actual;
     actual = target.getType();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }