public void TestInheritedClone()
 {
     Thing original = new Animal();
     Assert.IsInstanceOfType(typeof(Animal),Serializer.Clone(original));
 }