internal ReflectionTestSuite(ReflectionTestFramework framework) { Framework = framework; Assemblies = framework.Assemblies; Builder = new ReflectionTestSuiteBuilder(this); RootPath = Builder.TreeRoot.GetRootNode(); RootTestCase = new ReflectionTestCase(RootPath); }
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); }