Exemplo n.º 1
0
 public TestRunThread(TestCaseRun testrun, rgatState rgatState, TestRunner harness)
 {
     _testCase  = testrun.GetTestCase;
     _thisTest  = testrun;
     _rgatState = rgatState;
     _harness   = harness;
 }
Exemplo n.º 2
0
 /// <summary>
 /// init the state property
 /// </summary>
 /// <param name="state_">rgatState object</param>
 public static void SetRgatState(rgatState state_)
 {
     _clientState = state_;
 }
Exemplo n.º 3
0
 public TestRunner(rgatState clientState)
 {
     _rgatState = clientState;
 }
Exemplo n.º 4
0
 /// <summary>
 /// Create an ImGui GUI rgat session
 /// </summary>
 /// <param name="state">rgat state obj</param>
 public ImGuiRunner(rgatState state)
 {
     _rgatState  = state;
     _longTimer  = new System.Timers.Timer(CONSTANTS.UI.UI_LONG_TIMER_INTERVAL);
     _shortTimer = new System.Timers.Timer(CONSTANTS.UI.UI_SHORT_TIMER_INTERVAL);
 }