public void FullCommandLine() { NUnitConsoleApplication app = new NUnitConsoleApplication(new[] { testProject }); app.NoLogo = true; app.ShadowCopy = true; app.NoXmlOutputFile = false; FileUtility.ApplicationRootPath = @"C:\SharpDevelop"; string expectedFullCommandLine = "\"C:\\SharpDevelop\\bin\\Tools\\NUnit\\nunit-console-x86.exe\" " + "\"C:\\Projects\\MyTests\\MyTests.dll\" " + "/nologo"; Assert.AreEqual(expectedFullCommandLine, app.GetCommandLine()); }