()
| 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 | { |
nothing calls this directly
no test coverage detected