Skip to content

Instantly share code, notes, and snippets.

@coderunner
Created September 12, 2011 00:02
Show Gist options
  • Select an option

  • Save coderunner/1210326 to your computer and use it in GitHub Desktop.

Select an option

Save coderunner/1210326 to your computer and use it in GitHub Desktop.
test increment log count feature
@Test
public void shouldIncrementLogCounter()
{
assertEquals(0, logger.getLogCount());
logger.log(LEVEL, MESSAGE);
assertEquals(1, logger.getLogCount());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment