Exemplo n.º 1
0
        public TestCoreSuite(TestCoreMessages.StationType stationType, TestCoreController testCoreController)
        {
            this.stationType = stationType;
            this.tcc         = testCoreController;

            loadTestCases(stationType);
        }
Exemplo n.º 2
0
        public TestCoreRunner(TestCoreController testCoreController, string trackId, TestCoreMessages.StationType stationType)
        {
            this.tcc            = testCoreController;
            this.trackId        = trackId;
            this.stationType    = stationType;
            this.threadRunTests = new Thread(() => run(testCases, this));
            this.modTrackId     = string.Empty;

            dicSambaModInfo = new Dictionary <string, string>();

            ts = new TestCoreSuite(stationType, tcc);

            testCases = ts.GetTestCasesList(stationType);
        }
Exemplo n.º 3
0
 public Mod(TestCoreController testCoreController)
 {
     dicSambaModInfo = new Dictionary <string, string>();
     this.tcc        = testCoreController;
 }
Exemplo n.º 4
0
 public Jig(TestCoreController testCoreController)
 {
     this.tcc = testCoreController;
 }