/** Test method for {@link org.apache.niolex.commons.test.Counter#inc()}. */ @Test public void testInc() { Counter c = new Counter(); c.inc(); c.inc(); assertEquals(2, c.cnt()); }
/** Test method for {@link org.apache.niolex.commons.test.Counter#cnt()}. */ @Test public void testCnt() { Counter c = new Counter(); c.set(1123); assertEquals(1123, c.cnt()); }