public static void Run(string ipcPortName, Guid linkId) { LoaderManager.InitializeAndSetupRuntimeIfNeeded(); // note: after this point we can reference Gallio types. ShimWithRuntime.Run(ipcPortName, linkId); }
public GallioAdapter() { LoaderManager.InitializeAndSetupRuntimeIfNeeded(); testIdProperty = TestProperty.Register("Gallio.TestId", "Test id", typeof(string), typeof(TestCase)); testCaseFactory = new TestCaseFactory(testIdProperty); cachingTestCaseFactory = new CachingTestCaseFactory(testCaseFactory, testIdProperty); testResultFactory = new TestResultFactory(); testExplorer = new TestExplorer(cachingTestCaseFactory); testRunner = new TestRunner(cachingTestCaseFactory, testResultFactory, testIdProperty); }
static GallioAction() { LoaderManager.InitializeAndSetupRuntimeIfNeeded(); }
private static void SetupRuntime() { LoaderManager.InitializeAndSetupRuntimeIfNeeded(); }
protected void Application_Start() { LoaderManager.InitializeAndSetupRuntimeIfNeeded(); FullStart(); }
public GallioAdapter() { LoaderManager.InitializeAndSetupRuntimeIfNeeded(); }
static GallioTestProvider() { LoaderManager.InitializeAndSetupRuntimeIfNeeded(); }
static AnnotationDaemonStage() { LoaderManager.InitializeAndSetupRuntimeIfNeeded(); }
/// <summary> /// Gets the factory for constructing the target of the proxy. /// </summary> /// <returns>The target factory.</returns> public static IProxyTargetFactory GetTargetFactory() { LoaderManager.InitializeAndSetupRuntimeIfNeeded(); return(LoaderManager.Loader.Resolve <IProxyHandler>().TargetFactory); }