NUnit:在TearDown中访问失败消息()

时间:2013-01-15 15:23:58

标签: c# testing nunit automated-tests teardown

我正在尝试将NUnit中运行的自动化测试结果记录在一个小型数据库中,以便数据易于访问并且由于各种原因更安全地记录。 (大约有550个自动化测试并运行它们都可能需要数天)

我已经可以访问测试的结束状态(Passed / Failed / Error / Canceled / Skipped等..)但是我想记录额外的细节。

我希望在TearDown()中做到这一点。

这是我能找到的最接近的东西,但没有给我答案: https://groups.google.com/forum/?fromgroups=#!msg/nunit-discuss/lXxwECvpqFc/IbKOfQlbJe8J

想法?

3 个答案:

答案 0 :(得分:4)

我相信您可以使用NUnit EventListeners获取所需的信息。我自己没有使用过它们,但是我已经将它们加入了书签,以便做一些类似于你想要完成的事情。

这是您正在使用的界面。希望您的TearDown方法会在TestFinished之前调用,但我无法验证这一点。

public interface EventListener
{
    void RunStarted(string name, int testCount );
    void RunFinished(TestResult result);
    void RunFinished(Exception exception);
    void TestStarted(TestName testName);
    void TestFinished(TestResult result);
    void SuiteStarted(TestName testName);
    void SuiteFinished(TestResult result);
    void UnhandledException(Exception exception);
    void TestOutput(TestOutput testOutput);
}

答案 1 :(得分:1)

对于那些想要一些skellie代码的人:

[NUnitAddinAttribute(Type = ExtensionType.Core,
Name = "Database Addin",
Description = "Writes test results to the database")]
public class MyExtension :IAddin, EventListener
{
//some private attributes to hold important data

//you must provide the Install method
    public bool Install(IExtensionHost host)
    {
        //I also built my connection string in here
        IExtensionPoint listeners = host.GetExtensionPoint("EventListeners");
        if (listeners == null)
             return false;

        listeners.Install(this);
        return true;
    }

//you must also provide all the event handlers, 
//but they don't have to actually do anything if they are not used.
//e.g.

    public void TestStarted(NUnit.Core.TestName testName)
    {
        //This saved the start time of the test
        _start =  DateTime.Now;
    }

    public void TestFinished(NUnit.Core.TestResult result)
    {
        //LogTest connected to the databse and executed a proc to 
        //insert the log, was quite simple
        LogTest((result.Message == null? "" : result.Message),
            result.ResultState,
            result.Name,
            _start,
            DateTime.Now);
    }

    public void TestOutput(NUnit.Core.TestOutput testOutput)
    {
         //this is one of the unused event handlers, it remains empty.
    }
    //etc..

}

答案 2 :(得分:1)

NUnit 3.0 将这些详细信息包含在 TestContext.CurrentContext中.~

警告:如果您将VS测试适配器作为扩展包括在内,则使用事件处理程序将导致测试运行两次。一次用于扩展,一次用于实现事件处理程序所需的包含dll。