コード例 #1
0
ファイル: TestRecords.cs プロジェクト: dotnet/wpf-test
        /// <summary/>
        internal TestRecords(IEnumerable <TestRecord> tests)
        {
            ExecutionGroupRecords = new Collection <ExecutionGroupRecord>();
            TestCollection        = new TestCollection();

            foreach (TestRecord t in tests)
            {
                TestCollection.Add(t);
            }
        }
コード例 #2
0
ファイル: TestRecords.cs プロジェクト: dotnet/wpf-test
 /// <summary>
 /// A public Constructor is needed for Deserialization. Not needed for use by consumers.
 /// </summary>
 public TestRecords()
 {
     ExecutionGroupRecords = new Collection <ExecutionGroupRecord>();
     TestCollection        = new TestCollection();
 }