Esempio n. 1
0
        internal ReflectionTestSuite(ReflectionTestFramework framework)
        {
            Framework  = framework;
            Assemblies = framework.Assemblies;
            Builder    = new ReflectionTestSuiteBuilder(this);

            RootPath     = Builder.TreeRoot.GetRootNode();
            RootTestCase = new ReflectionTestCase(RootPath);
        }
Esempio n. 2
0
 public ReflectionTestSession(TestApp app, ReflectionTestFramework framework, TestContext rootCtx)
     : base(app)
 {
     RootContext   = rootCtx;
     provider      = framework.ConfigurationProvider;
     configuration = new TestConfiguration(provider, app.Settings);
     name          = framework.Name;
     suite         = new ReflectionTestSuite(framework);
 }
Esempio 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);
        }