本文整理汇总了C#中NUnit.Execute方法的典型用法代码示例。如果您正苦于以下问题:C# NUnit.Execute方法的具体用法?C# NUnit.Execute怎么用?C# NUnit.Execute使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NUnit
的用法示例。
在下文中一共展示了NUnit.Execute方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: NUnitExecute
public void NUnitExecute()
{
#region Find NUnit installation
string nunitPath = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
nunitPath = Path.Combine(nunitPath, NUnit.DEFAULT_NUNIT_DIRECTORY);
RegistryKey buildKey = Registry.ClassesRoot.OpenSubKey(@"NUnitTestProject\shell\open\command");
if (buildKey == null) Assert.Ignore(@"Can't find NUnit installation");
nunitPath = buildKey.GetValue(null, nunitPath).ToString();
Regex nunitRegex = new Regex("(.+)nunit-gui\\.exe", RegexOptions.IgnoreCase);
Match pathMatch = nunitRegex.Match(nunitPath);
nunitPath = pathMatch.Groups[1].Value.Replace("\"", "");
#endregion Find NUnit installation
MockBuild buildEngine = new MockBuild();
string testDirectory = TaskUtility.makeTestDirectory(buildEngine);
NUnit task = new NUnit();
task.BuildEngine = buildEngine;
task.Assemblies = TaskUtility.StringArrayToItemArray(
Path.Combine(nunitPath, "nunit.framework.tests.dll"));
task.WorkingDirectory = testDirectory;
task.OutputXmlFile = Path.Combine(testDirectory, @"nunit.framework.tests-results.xml");
Assert.IsTrue(task.Execute(), "Execute Failed");
}
示例2: NUnitExecuteWhenToolPathIsDefined
public void NUnitExecuteWhenToolPathIsDefined(int majorVersion, int minorVersion, int number)
{
string nUnitDirName = string.Format("NUnit {0}.{1}.{2}", majorVersion, minorVersion, number);
string nunitPath = Path.Combine(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles), nUnitDirName), "bin");
if (!Directory.Exists(nunitPath))
{
Assert.Inconclusive("{0} - not found", nunitPath);
}
MockBuild buildEngine = new MockBuild();
string testDirectory = TaskUtility.makeTestDirectory(buildEngine);
NUnit task = new NUnit();
task.ToolPath = nunitPath;
task.BuildEngine = buildEngine;
task.Assemblies = TaskUtility.StringArrayToItemArray(Path.Combine(nunitPath, "nunit.framework.tests.dll"));
task.WorkingDirectory = testDirectory;
Assert.IsTrue(task.Execute(), "Execute Failed");
}