1

我正在尝试设置一个类别,以便我可以在我们的构建服务器上排除硬件测试:

namespace MyNamespace
{
    using namespace NUnit::Framework;

    [TestFixture]
    [Category("RequiresHardware")]
    public ref class UnitTest_SomeHardwareTests
    {
        ...
    };
}

...但是当我尝试使用类别时出现错误:

1>c:\projects\testing\UnitTest_MainSystem.h(14) : error C2872: 'CategoryAttribute' : ambiguous symbol
1>        could be 'c:\program files (x86)\nunit 2.5.9\bin\net-2.0\framework\nunit.framework.dll : NUnit::Framework::CategoryAttribute'
1>        or       'c:\windows\microsoft.net\framework\v2.0.50727\system.dll : System::ComponentModel::CategoryAttribute'

我如何告诉它使用 NUnit?

4

1 回答 1

2

以下两种方法对我有用:

或者,在属性规范中明确指出完全限定的属性名称,即

[NUnit::Framework::Category("RequiresHardware")]

或者,添加一个using声明以准确指明CategoryAttribute您打算使用哪个:

using NUnit::Framework::CategoryAttribute;
于 2012-09-20T10:57:14.200 回答