Exemple #1
0
 public Project(ProgrammingForm window)
 {
     mWindow = window;
     mDataValueRetentionFile = new DataValueRetentionFile(this);
     //globalTNDReader = new TNDnTagReader(this);
     //globalTNDWriter = new TNDnTagWriter(this);//zzz
 }
Exemple #2
0
        public TestSequence(Project theProject)
        {
            mProject = theProject;
            Name     = "Untitled Test Sequence";

            DataValueRegistry = new DataValueDefinitionRegistry(this, "DataValue");
            mTestExecutionTimeoutTimer.Elapsed += new System.Timers.ElapsedEventHandler(mTestExecutionTimeoutTimer_Elapsed);

            project().RegisterTestSequence(this);

            mDataValueRetentionFile = new DataValueRetentionFile(this);

            mThread = new Thread(new ThreadStart(Go));
        }