Ejemplo n.º 1
0
 public ReflectionTestAssemblyBuilder(ReflectionTestSuiteBuilder suite, ReflectionTestAssembly assembly)
     : base(TestPathType.Assembly, null, assembly.Name,
            TestSerializer.GetStringParameter(assembly.Assembly.FullName))
 {
     SuiteBuilder = suite;
     Assembly     = assembly;
 }
Ejemplo n.º 2
0
        internal ReflectionTestSuite(ReflectionTestFramework framework)
        {
            Framework  = framework;
            Assemblies = framework.Assemblies;
            Builder    = new ReflectionTestSuiteBuilder(this);

            RootPath     = Builder.TreeRoot.GetRootNode();
            RootTestCase = new ReflectionTestCase(RootPath);
        }
Ejemplo n.º 3
0
        internal ReflectionTestSuite(ReflectionTestFramework framework)
        {
            Framework  = framework;
            Assemblies = framework.Assemblies;
            Builder    = new ReflectionTestSuiteBuilder(this);

            var rootPath = new TestPath(Builder.Host, null, Builder.Parameter);

            RootPath     = new TestPathNode(Builder.TreeRoot, rootPath);
            RootTestCase = new ReflectionTestCase(RootPath);
        }