Esempio n. 1
0
		public void RunTest(TestInfo info)
		{
			log.InfoFormat("RunTest called for Test {0}, AssemblyName {1}, TestToRun {2}",
				info.TestName, info.AssemblyName, info.TestToRun);

			new PNUnitTestRunner(info, mConfig).Run();
		}
Esempio n. 2
0
		public PNUnitTestRunner(TestInfo info, AgentConfig config)
		{
			mConfig = config;
			mTestInfo = info;
		}
Esempio n. 3
0
 public PNUnitTestRunner(TestInfo info, AgentConfig config)
 {
     mConfig   = config;
     mTestInfo = info;
 }
Esempio n. 4
0
 // To be used only by the runner
 public PNUnitServices(object info, object consoleaccess)
 {
     mInfo     = info as TestInfo;
     mConsole  = consoleaccess as ITestConsoleAccess;
     mInstance = this;
 }
Esempio n. 5
0
 // To be used only by the runner
 public PNUnitServices(object info, object consoleaccess)
 {
     mInfo = info as TestInfo;
     mConsole = consoleaccess as ITestConsoleAccess;
     mInstance = this;
 }