Package com.voyagegames.core.modules

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


  }

  @Test
  public void down_decrementsValue() {
    Counter c = new Counter();
    c.down();
    assertTrue(c.value() == -1);
  }

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


  }

  @Test
  public void down_decrementsBySpecificValue() {
    Counter c = new Counter();
    c.down(5);
    assertTrue(c.value() == -5);
  }

}
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.