expect(exportAction, false, true, context);
}
@Test
public void testNoSelectionsUncreatable() {
ActionContext context = new TestContext(uncreatableView);
Mockito.when(componentRegistry.isCreatable(Mockito.<Class<?>>any())).thenReturn(false);
expect(exportThisAction, true, false, context);
expect(exportAction, false, false, context);
}