{
final Map<String,Object> options = Util.toMap("backgroundColor", "red", "shouldAllowClose", false);
ScenePanel result = (ScenePanel)production.loadScene("aScene", options);
result.illuminate();
assertEquals(false, result.shouldAllowClose());
assertEquals("#ff0000ff", result.getStyle().getBackgroundColor());
}
@Test
public void loadsSceneWithProps() throws Exception