Beispiel #1
0
        public static void ReRun(Isolations isolation, bool attachDebugger = false)
        {
            MethodBase methodInfo            = new StackTrace().GetFrame(1).GetMethod();
            var        testMethodInformation = new TestMethodInformation(methodInfo, attachDebugger);

            IsolationDispatcher.IsolateTestRun(isolation, testMethodInformation);
        }
Beispiel #2
0
        public void BeforeTest(ITest test)
        {
            var testMethodInformation = new TestMethodInformation(test.Method.MethodInfo, mAttachDebugger);

            IsolationDispatcher.IsolateTestRun(mIsolation, testMethodInformation);
        }