Package com.eafit.collectionhomework.model

Examples of com.eafit.collectionhomework.model.Dog


  public Animal animal;

  @Before
  public void Init() {
    da = new DataAccessController();
    Dog dog1 = new Dog();
    dog1.setDogName("Rambo");
    dog1.setId("123ABC");
    Dog dog2 = new Dog();
    dog2.setDogName("Trosky");
    dog2.setId("123ABCD");
    Dog dog3 = new Dog();
    dog3.setDogName("Malu");
    dog3.setId("123A");
    Cat cat1 = new Cat();
    cat1.setId("666321");
    Cat cat2 = new Cat();
    cat2.setId("ABC321");
   
View Full Code Here


  }
 
  @Test
  public void testGetDogByDogName()
  {   
    Dog result = da.getDogByDogName("Trosky");
    Assert.assertEquals(result, dogToValiate);
  }
View Full Code Here

TOP

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

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.