/** Test that getLogger() returns the matching log class name for the current class under test. */
 @Test
 public void testLogger() {
   final Logger logger = controller.getLogger();
   assertEquals(
       "Log class name did not match.", controller.getClass().getName(), logger.getName());
 }