Exemplo n.º 1
0
        /// <summary/>
        internal TestRecords(IEnumerable <TestRecord> tests)
        {
            ExecutionGroupRecords = new Collection <ExecutionGroupRecord>();
            TestCollection        = new TestCollection();

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