/// <summary/> internal TestRecords(IEnumerable <TestRecord> tests) { ExecutionGroupRecords = new Collection <ExecutionGroupRecord>(); TestCollection = new TestCollection(); foreach (TestRecord t in tests) { TestCollection.Add(t); } }
/// <summary> /// A public Constructor is needed for Deserialization. Not needed for use by consumers. /// </summary> public TestRecords() { ExecutionGroupRecords = new Collection <ExecutionGroupRecord>(); TestCollection = new TestCollection(); }