Package com.voyagegames.core.modules

Examples of com.voyagegames.core.modules.CounterDown.up()


  }

  @Test
  public void up_isNoOp() {
    CounterDown c = new CounterDown();
    c.up();
    assertTrue(c.value() == 0);
  }

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


  }

  @Test
  public void up_bySpecificValueIsNoOp() {
    CounterDown c = new CounterDown();
    c.up(5);
    assertTrue(c.value() == 0);
  }

  @Test
  public void down_decrementsValue() {
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.