示例#1
0
 public FixtureMeta()
 {
     Category =new List<string>();
     Tests = new CallBackList<TestMeta>(it=>it.Fixture = this);
 }
示例#2
0
        public TestMeta()
        {
            Category = new List <string>();

            Results = new CallBackList <Result>(it => it.Test = this);
        }
示例#3
0
 public FixtureMeta()
 {
     Category = new List <string>();
     Tests    = new CallBackList <TestMeta>(it => it.Fixture = this);
 }
示例#4
0
 public AssemblyMeta()
 {
     Fixtures = new CallBackList<FixtureMeta>(it => it.Assembly = this);
 }
示例#5
0
 public AssemblyMeta()
 {
     Fixtures = new CallBackList <FixtureMeta>(it => it.Assembly = this);
 }