Package com.happyprog.tdgotchi.level

Examples of com.happyprog.tdgotchi.level.Beginner


    testSubscriber = mock(TestSubscriber.class);
    refactoringSubscriber = mock(RefactoringSubscriber.class);
    levels = mock(LevelManager.class);

    when(levels.getZombie()).thenReturn(new Zombie());
    when(levels.getBeginner()).thenReturn(new Beginner());
    when(levels.getIntermediate()).thenReturn(new Intermediate());
    when(levels.getPro()).thenReturn(new Pro());

    scoreboard = new Scoreboard(view, tamagotchi, testSubscriber, refactoringSubscriber, levels);
  }
View Full Code Here

TOP

Related Classes of com.happyprog.tdgotchi.level.Beginner

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.