Package com.google.code.timetrail.backend

Examples of com.google.code.timetrail.backend.Doctor


  private Place[] places;

  @Before
  public void setUpRiver() {
    doctor = new Doctor();
    engineer = new Engineer();
    entrepreneur = new Entrepreneur();
    nutritionist = new Nutritionist();

    engine = new Engine();
View Full Code Here


            if(selectedProfession.equals("Engineer")){
                player = new Engineer();
            } else if(selectedProfession.equals("Nutritionist")){
                player = new Nutritionist();
            } else if(selectedProfession.equals("Doctor")){
                player = new Doctor();
            } else if(selectedProfession.equals("Entrepreneur")){
                player = new Entrepreneur();
            }
            final List<Person> members = new ArrayList<Person>();
            player.setName(playerName);
View Full Code Here

   * @see TestCase#setUp()
   */
  protected void setUp() throws Exception {
    //controller=new Control();
    personTested=new Person("testCase1");
    doctorTested= new Doctor();
    nutritionistTested= new Nutritionist();
    engineerTested= new Engineer();
    entrepreneurTested= new Entrepreneur();
    invPerson=new Inventory();
    invDoctor=new Inventory();
View Full Code Here

TOP

Related Classes of com.google.code.timetrail.backend.Doctor

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.