MCPcopy Create free account
hub / github.com/MyGUI/mygui / DefaultPlatformTest

Method DefaultPlatformTest

Wrappers/TestApp_Sharp/Program.cs:17–34  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

15 }
16
17 private static void DefaultPlatformTest()
18 {
19 Export.Initialise();
20
21 Test.TestWidgets();
22
23 float time = 0;
24 Export.AddFrameDelegate(delegate(float _time)
25 {
26 time += _time;
27 if (time < 1)
28 return;
29 time = 0;
30
31 Test_Gui.Update();
32 });
33 Export.Run();
34 }
35
36 private static void PoorPlatformTest()
37 {

Callers

nothing calls this directly

Calls 5

InitialiseMethod · 0.45
TestWidgetsMethod · 0.45
AddFrameDelegateMethod · 0.45
UpdateMethod · 0.45
RunMethod · 0.45

Tested by

no test coverage detected