Package co.edu.eafit.capacitacionjava.collections.model

Examples of co.edu.eafit.capacitacionjava.collections.model.Animal


  }
 
  @Test
  public void getOldestAnimalAndRemoveTest() {
    when(queueAnimals.pop()).thenReturn(dog);
    Animal actualAnimal = persistenceManager.getOldestAnimalAndRemove();
    Assert.assertEquals(dog, actualAnimal);
  }
View Full Code Here


  }

  @Test
  public void getAnimalByIdTest() {
    when(tableIdAnimals.get(2)).thenReturn(dog);
    Animal actualAnimal = persistenceManager.getAnimalById(2);
    Assert.assertEquals(dog, actualAnimal);
  }
View Full Code Here

TOP

Related Classes of co.edu.eafit.capacitacionjava.collections.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.