0

我在 jenkins 工作中尝试使用 nunit 时遇到了一些问题。尽管 nunit-2.6 [1] 的文档指出,您可以指定要用于测试的构建配置,但这似乎不起作用。我尝试使用“发布”配置运行测试,但 nunit 尝试加载调试程序集并失败:( 我使用以下调用启动 nunit:

nunit-console-x86.exe ambiHomeWPFTest\Tests\Tests.csproj /config:Release

任何人都有一个想法,那里发生了什么?我对来自 java 背景的 .NET 很陌生,所以也许我错过了一些简单的东西。

[1] http://www.nunit.org/index.php?p=consoleCommandLine&r=2.6

[test_ambiHomeWPFTest_master] $ cmd /c call     C:\Windows\TEMP\hudson8704126216198591607.bat

c:\jenkins\workspace\test_ambiHomeWPFTest_master>nunit-console-x86.exe ambiHomeWPFTest\Tests\Tests.csproj /config:Release 
NUnit-Console version 2.6.0.12051
Copyright (C) 2002-20011 Charlie Poole.
Copyright (C) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov.
Copyright (C) 2000-2002 Philip Craig.
All Rights Reserved.

Runtime Environment - 
   OS Version: Microsoft Windows NT 6.1.7601 Service Pack 1
  CLR Version: 2.0.50727.5456 ( Net 3.5 )

ProcessModel: Default    DomainUsage: Default
Execution Runtime: net-3.5
Unhandled Exception:
System.IO.DirectoryNotFoundException: Ein Teil des Pfades     "c:\jenkins\workspace\test_ambiHomeWPFTest_master\ambiHomeWPFTest\Tests\bin\Debug\Tests.dll    " konnte nicht gefunden werden.
   bei System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
   bei System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32     rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options,     SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
   bei System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access)
   bei NUnit.Core.AssemblyReader.CalcHeaderOffsets()
   bei NUnit.Core.AssemblyReader..ctor(String assemblyPath)
   bei NUnit.Util.RuntimeFrameworkSelector.SelectRuntimeFramework(TestPackage package)
   bei NUnit.Util.DefaultTestRunnerFactory.GetTargetProcessModel(TestPackage package)
   bei NUnit.Util.DefaultTestRunnerFactory.MakeTestRunner(TestPackage package)
   bei NUnit.ConsoleRunner.ConsoleUi.Execute(ConsoleOptions options)
   bei NUnit.ConsoleRunner.Runner.Main(String[] args)

c:\jenkins\workspace\test_ambiHomeWPFTest_master>exit -100 
Build step 'Execute Windows batch command' marked build as failure
Finished: FAILURE
4

1 回答 1

1

/config:如果您在引用.csprojin 例如命令时遇到开关问题nunit-console-x86,我的建议是您明确引用感兴趣的 DLL。

在上面的场景中,调用应该是:

nunit-console-x86 ambiHomeWPFTest\Tests\bin\Release\Tests.dll
于 2012-06-19T08:23:06.043 回答