Exemplo n.º 1
0
 internal void ResetTestCheckCollection()
 {
     if (_testCheckCollection == null)
     {
         _testCheckCollection = new TestCheckCollection();
     }
     else
     {
         _testCheckCollection.Clear();
     }
 }
Exemplo n.º 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;
        }
Exemplo n.º 3
0
 internal void SetTestChecks(TestCheckCollection testChecks)
 {
     _testChecks = new TestCheckCollection(testChecks);
 }
 internal TestCheckCollection(TestCheckCollection original)
     : base(original)
 {
 }
Exemplo n.º 5
0
 public ResultStruct()
 {
     TestChecks   = new TestCheckCollection();
     TestWarnings = new TestWarningCollection();
     TestData     = new TestDataCollection();
 }