@Test
  public void modelAttributeMethodWithUnnamedListAttributeMonitored() {
    ExampleController testController = new ExampleController();
    testController.unnamedAttributeListAccount();

    Operation operation = getLastEntered();
    assertEquals("java.util.ArrayList", operation.get("value"));
    assertEquals("accountList", operation.get("modelAttributeName"));
  }