Package com.happyprog.tdgotchi.level

Examples of com.happyprog.tdgotchi.level.Level


  public void onChangeLevel_updatesObserverWithNewMoodImage() throws Exception {
    when(level.getNormalMood()).thenReturn(DEFAULT_MOOD);

    tamagotchi.start();

    Level newLevel = mock(Level.class);
    when(newLevel.getNormalMood()).thenReturn(new Image[] { HAPPY1 });

    tamagotchi.onImageSetCallback();
    tamagotchi.setLevel(newLevel);
    tamagotchi.onImageSetCallback();
View Full Code Here

TOP

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

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.