|
|
@ -270,8 +270,8 @@ public class TestChooser extends JDialog { |
|
|
|
final Method settingMethod = clazz.getMethod("setShowSettings", boolean.class); |
|
|
|
final Method settingMethod = clazz.getMethod("setShowSettings", boolean.class); |
|
|
|
settingMethod.invoke(app, showSetting); |
|
|
|
settingMethod.invoke(app, showSetting); |
|
|
|
} |
|
|
|
} |
|
|
|
final Method mainMethod = clazz.getMethod("start", null); |
|
|
|
final Method mainMethod = clazz.getMethod("start"); |
|
|
|
mainMethod.invoke(app, null); |
|
|
|
mainMethod.invoke(app); |
|
|
|
Field contextField = Application.class.getDeclaredField("context"); |
|
|
|
Field contextField = Application.class.getDeclaredField("context"); |
|
|
|
contextField.setAccessible(true); |
|
|
|
contextField.setAccessible(true); |
|
|
|
JmeContext context = null; |
|
|
|
JmeContext context = null; |
|
|
|