Exemplo n.º 1
0
 public void Setup()
 {
     timerStub = new TimerStub();
     driver    = new TestingDriver
     {
         Timer        = timerStub,
         ValueStorage = new VariableStorageStub()
     };
     driver.AddVariable(new IntegerVariable(1, "Var1"));
 }
Exemplo n.º 2
0
 public void Setup()
 {
     driver              = new TestingDriver();
     timerStub           = new TimerStub();
     variableStorage     = new VariableStorageStub();
     driver.Timer        = timerStub;
     driver.ValueStorage = variableStorage;
     driver.AddVariable(new IntegerVariable(10, "Var10"));
     driver.AddVariable(new IntegerVariable(8, "Var8"));
 }
Exemplo n.º 3
0
 public void Setup()
 {
     driver = new TestingDriver();
 }