Package com.voyagegames.core.modules

Examples of com.voyagegames.core.modules.CounterUp.down()


  }

  @Test
  public void down_isNoOp() {
    CounterUp c = new CounterUp();
    c.down();
    assertTrue(c.value() == 0);
  }

  @Test
  public void down_bySpecificValueIsNoOp() {
View Full Code Here


  }

  @Test
  public void down_bySpecificValueIsNoOp() {
    CounterUp c = new CounterUp();
    c.down(5);
    assertTrue(c.value() == 0);
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.