6061626364656667686970
mockLog.expects(once()).method("debug").with(eq("JUnit")); mockLog.expects(once()).method("debug").with(eq("JUnit"), same(exception)); if(logger.isDebugEnabled()) { logger.debug("JUnit"); logger.debug("JUnit", exception); } } /**
6162636465666768697071
mockLog.expects(once()).method("debug").with(eq("JUnit"), same(exception)); if(logger.isDebugEnabled()) { logger.debug("JUnit"); logger.debug("JUnit", exception); } } /** * Test info level.
5960616263646566676869