Beispiel #1
0
 internal void ResetTestDataCollection()
 {
     if (_testDataCollection == null)
     {
         _testDataCollection = new TestDataCollection();
     }
     else
     {
         _testDataCollection.Clear();
     }
 }
Beispiel #2
0
        public TestClassBase()
        {
            _testVerdict = Core.TestVerdict.Pass;

            _testCheckCollection   = new TestCheckCollection();
            TestCheck.OnTestCheck += TestCheck_OnTestCheck;

            _testWarningCollection     = new TestWarningCollection();
            TestWarning.OnTestWarning += TestWarning_OnTestWarning;

            _testDataCollection = new TestDataCollection();

            TestCheckFailuresOnly = true;
            MaxFailedTestChecks   = _defaultMaxTestCheckFailures;
        }
Beispiel #3
0
 internal void SetTestData(TestDataCollection testData)
 {
     _testData = new TestDataCollection(testData);
 }
Beispiel #4
0
 internal TestDataCollection(TestDataCollection original)
     : base(original)
 {
 }
Beispiel #5
0
 public ResultStruct()
 {
     TestChecks   = new TestCheckCollection();
     TestWarnings = new TestWarningCollection();
     TestData     = new TestDataCollection();
 }