我正在通过Mono测试.Net生态系统,但我遇到了NUnit的问题。我有以下示例测试文件:
using NUnit.Framework;
namespace Tests
{
[TestFixture]
class Tests
{
[Test]
public void FailingTest()
{
Assert.Fail("A message");
}
[Test]
public void PassingTest()
{
}
}
}
我正在构建并运行:
cweber@mbp ~/temp/monoexample$ dmcs tests.cs -target:library -r:$NUNIT_FRAMEWORK_DLL
cweber@mbp ~/temp/monoexample$ ls tests.dll
tests.dll
cweber@mbp ~/temp/monoexample$ nunit-console tests.dll
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 14.5.0.0
CLR Version: 4.0.30319.17020 ( 4.2.1 (explicit/6dd2d0d Fri Nov 6 12:25:19 EST 2015) )
.N.N
Tests run: 0, Failures: 0, Not run: 2, Time: 0.014 seconds
如您所见,这些测试都没有运行。
我用谷歌搜索了我能想到的一切,并且我完成了我能想到的所有实验(例如,删除命名空间,弄乱fixture
和run
标志等等) 。我已经清楚地简化了这个例子,就像我知道的那样,但我的想法已经用完了。如果我能提供更多信息,请告诉我!
如果答案最终显而易见,我很抱歉提出这个问题。
答案 0 :(得分:4)
查看您的TestResult.xml
文件,您将看到原因,课程不公开; - )
<results>
<test-case name="Tests.Tests.FailingTest" executed="False">
<reason>
<message><![CDATA[Fixture class is not public]]></message>
</reason>
</test-case>
<test-case name="Tests.Tests.PassingTest" executed="False">
<reason>
<message><![CDATA[Fixture class is not public]]></message>
</reason>
</test-case>
</results>