RadioAction radioActionThat = (RadioAction) menuItem.getAction();
Assert.assertNotNull(radioActionThat);
Assert.assertTrue(radioActionThat.isEnabled());
Assert.assertFalse(radioActionThat.isSelected());
radioActionThat.actionPerformed(new ActionEvent(testMenu, 0, null));
testMenu.fireMenuDeselected();
resetTargetComponent(housingB);
}
@Test(enabled=true, dependsOnMethods = { "testTargetContextFirstRadioMenuSelected" })