Changing "@Mocked Logger" to "@Capturing Logger" in the parameter makes it work. like
@Test
public void test(@Capturing final Logger LOGGER) {
new NonStrictExpectations() {
{
LOGGER.isInfoEnabled();
result = false;
}
};
assertFalse(cls1.demoMethod());
}