Exemplo n.º 1
0
 public Plan(IO.IntegralIO testerIO)
 {
     _io      = testerIO;
     _loaded  = false;
     _caption = "";
     _path    = "";
     _tests   = new List <Test>();
 }
Exemplo n.º 2
0
 public Test(IO.IntegralIO testerIO)
 {
     _io     = testerIO;
     _text   = "";
     _number = "";
     _codes  = new string[0];
     _result = new TestResult();
     //_value  = 0.0;
 }
Exemplo n.º 3
0
        public Tester()
        {
            _io = new IO.IntegralIO();
            ResetTester();
            Command("0100");

            // Выделение памяти под 16 планов (0-ой план - пустой)
            _plans = new Plan[16];
            for (var i = 0; i < _plans.Length; i++)
            {
                _plans[i] = new Plan(_io);
            }

            _timer          = new System.Timers.Timer(100);
            _timer.Elapsed += _timer_Elapsed;
            //_timer.Start();
        }
Exemplo n.º 4
0
 public Test(IO.IntegralIO testerIO, string text) : this(testerIO)
 {
     Parse(text);
 }