Exemplo n.º 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);
        }
Exemplo n.º 2
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);
 }
 public void BeforeTest(TestDetails testDetails)
 {
     var testMethodInformation = new TestMethodInformation(testDetails.Method, mAttachDebugger);
     IsolationDispatcher.IsolateTestRun(mIsolation, testMethodInformation);
 }
Exemplo n.º 4
0
        public void BeforeTest(ITest test)
        {
            var testMethodInformation = new TestMethodInformation(test.Method.MethodInfo, mAttachDebugger);

            IsolationDispatcher.IsolateTestRun(mIsolation, testMethodInformation);
        }