Package com.eafit.collectionhomework.model

Examples of com.eafit.collectionhomework.model.Animal


  }
 
  @Test
  public void testGetAnimalById()
  {   
    Animal result = da.getAnimalById("666321");
    Assert.assertEquals(result, animalToValidate);
  }
View Full Code Here


  }
 
  @Test
  public void testGetOldestAnimalAndRemove()
  {   
    Animal result = da.getOldestAnimalAndRemove();
    Assert.assertEquals(result, firstAnimalToValidate);
  }
View Full Code Here

TOP

Related Classes of com.eafit.collectionhomework.model.Animal

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.