internal void ResetTestDataCollection() { if (_testDataCollection == null) { _testDataCollection = new TestDataCollection(); } else { _testDataCollection.Clear(); } }
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; }
internal void SetTestData(TestDataCollection testData) { _testData = new TestDataCollection(testData); }
internal TestDataCollection(TestDataCollection original) : base(original) { }
public ResultStruct() { TestChecks = new TestCheckCollection(); TestWarnings = new TestWarningCollection(); TestData = new TestDataCollection(); }