2

nunit-console Testsuite.slnを実行しようとすると、次の出力が得られます

NUnit version 2.4.8
Copyright (C) 2002-2007 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: Unix 11.4.0.0
  CLR Version: 2.0.50727.1433 ( 2.10.11 (mono-2-10/2baeee2 Wed Jan 16 16:40:16 EST 2013) )

Missing method .ctor in assembly /Users/administrator/Desktop/projectname/testsuite/bin/Debug/Testsuite.dll, type NUnit.Framework.TestFixtureAttribute
Can't find custom attr constructor image: /Users/administrator/Desktop/projectname/testsuite/bin/Debug/Testsuite.dll mtoken: 0x0a000004
Could not load file or assembly 'nunit.framework, Version=2.6.0.12051, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77' or one of its dependencies.

助言がありますか?モノラル開発でテストランナーからテストを実行すると、問題なく動作します。

4

1 に答える 1

3

nunit.framework.dll ファイルが見つかりません。インストールが失敗していると思います。どのようにモノをインストールしましたか?NUnit はどのようにインストールしましたか?

最初に mono/nunit インストールを修正することをお勧めしますが、考えられる回避策は次のとおりです。

  1. 次のようにして、nunit.framework.dll の場所を見つけます。grep nunit
  2. この方法で nunit を実行します。

MONO_PATH=/path/where/nunit/dlls/are nunit-console4 Testsuite.dll

于 2013-03-15T21:36:03.553 に答える