}
@Test
public void closing() throws Exception
{
MockEventAction closingAction = new MockEventAction();
MockEventAction closedAction = new MockEventAction();
stage.getEventHandler().add(StageClosingEvent.class, closingAction);
stage.getEventHandler().add(StageClosedEvent.class, closedAction);
stage.close();