2

我已经为 NUnit (2.6.0) 定义了一个插件,就像这样

namespace company.Testing.Attributes
{
    [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
    public class ThenWithSetupAttribute : TestAttribute
    {}
}

namespace company.Testing
{
    [NUnitAddin(Description = "ThenWithSetup", Name = "ThenWithSetup")]
    public class ThenWithSetup : IAddin, EventListener
    {    
        public void RunStarted(string name, int testCount)
        {}

        public void RunFinished(TestResult result)
        {}

        public void RunFinished(Exception exception)
        {}

        public void TestStarted(TestName testName)
        {
            throw new Exception("Hello");
        }

        public void TestFinished(TestResult result)
        {
            throw new Exception("I said hello!");
        }

        public void SuiteStarted(TestName testName)
        {}

        public void SuiteFinished(TestResult result)
        {}

        public void UnhandledException(Exception exception)
        {}

        public void TestOutput(TestOutput testOutput)
        {}

        public bool Install(IExtensionHost host)
        {
            IExtensionPoint listeners = host.GetExtensionPoint("EventListeners");

            if (listeners == null)
                return false;

            listeners.Install(this);
            return true;
        }
    }
}

使用 Visual Studio 2010 和 ReSharper 7 我的印象是,当我还设置 ReSharper -> Options-> Nunit -> Load NUnit Addins -> Always 并将 company.Testing.dll 放在 ..\ReSharper\ v7.0\Bin\addins 文件夹,这些事件监听器会触发(在这种情况下抛出异常)。然而,情况并非如此,当测试在 TestStarted-eventlistener 中失败时,测试成功运行!?!

我的测试,在另一个解决方案中定义(引用上面的.dll):

[ThenWithSetup]
public void ShouldGetOkResponse()
{
    Console.WriteLine("testing 123");
    Assert.AreEqual(HttpStatusCode.OK, _result.StatusCode);
}

我显然错过了一些东西,但是什么?

谢谢!

4

1 回答 1

0

可能是您的带有测试的 dll 包含插件的 nunit 包?对我来说,这种情况不起作用。卸下包裹后,一切都开始了。

在这里看我的答案:https ://stackoverflow.com/a/34154702/908936

于 2015-12-08T11:31:46.537 回答