Package org.jazzteam.ModelHuman

Examples of org.jazzteam.ModelHuman.Human


public class ModelHumanTest {
  private Human human;

  @Before
  public void initialObject() {
    human = new Human();
  }
View Full Code Here


    human = new Human();
  }

  @Test
  public void test() {
    human = new Human();
    human.beBorn();
    human.getSick(new Gout(human));
    human.takeMedicine(new Rimantadine(human));
    human.getSick(new Myocarditis(human));
    human.getSick(new Tendinitis(human));
View Full Code Here

TOP

Related Classes of org.jazzteam.ModelHuman.Human

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.