Exemple #1
0
        public static string console_Run_GetXmlFile(this API_NUnit nUnitApi, string projectOrAssembly)
        {
            var tempFile = projectOrAssembly.fileName().tempFile() + ".xml";

            nUnitApi.console_Run_GetConsoleOut(projectOrAssembly, "/xml:\"" + tempFile + "\"");
            return(tempFile);
        }
 	public static string nUnit_Run(this string projectOrAssembly)
 	{
 		var nunit = new API_NUnit();  			
 		return nunit.console_Run_GetConsoleOut(projectOrAssembly);
 	}
Exemple #3
0
        public static string nUnit_Run(this string projectOrAssembly)
        {
            var nunit = new API_NUnit();

            return(nunit.console_Run_GetConsoleOut(projectOrAssembly));
        }
Exemple #4
0
 public static string console_Run_GetConsoleOut(this API_NUnit nUnitApi, string projectOrAssembly)
 {
     return(nUnitApi.console_Run_GetConsoleOut(projectOrAssembly, null));
 }