Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save coderunner/1210348 to your computer and use it in GitHub Desktop.
testing call to abstract method
@Test
//This can be tested in the abstract class,
//but the child classes will cover it.
public void shouldFormatAndLog()
{
logger.log(LEVEL, MESSAGE);
verify(logger).log(FORMATTED_LOG);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment