从 Nunit 获取失败测试列表

编程入门 行业动态 更新时间:2024-10-17 07:21:56
本文介绍了从 Nunit 获取失败测试列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个包含 8000 多个测试的测试套件,并且很难看到哪些测试在代码更改之间中断(这些测试用例是从某些日志文件中自动提取的查询).

I have a testsuite with over 8000 tests and it's getting really hard seeing which tests broke between code changes (these test cases are queries that were automatically extracted from some log files).

是否有一种简单的方法可以获取 NUnit 运行的失败测试列表?理想情况下,我想比较哪些测试在运行之间受到影响.

Is there a simple way to get the list of failing tests for a NUnit run? Ideally, I'd like to compare which tests were affected between runs.

推荐答案

您可以实现NUnit.Core.Extensibility.IAddin"和NUnit.Core.EventListener".因此,您可以操纵测试结果.NUnit(2.5 或更高版本)将自动加载实现IAddin"方法的类.

You can implement 'NUnit.Core.Extensibility.IAddin' and 'NUnit.Core.EventListener'. So you can manipulate the results of your tests. The NUnit (2.5 or higher) will automatically load your class that implements the methods of "IAddin."

像这样:

using System; using System.Text; using NUnit.Core.Extensibility; using NUnit.Core; namespace YourNUnitAddIns { /// <summary> /// Coleta informacoes da execucao do NUnit. /// </summary> [NUnitAddin( Name="CollectNUnitFailAddIn", Description="do something", Type=ExtensionType.Core)] public class CollectNUnitFailAddIn : IAddin, EventListener { #region IAddin Members public bool Install(IExtensionHost host) { IExtensionPoint suiteBuilders = host.GetExtensionPoint("SuiteBuilders"); IExtensionPoint testBuilders = host.GetExtensionPoint("TestCaseBuilders"); IExtensionPoint events = host.GetExtensionPoint("EventListeners"); if (events == null) return false; events.Install(this); return true; } #endregion #region EventListener Members public void RunFinished(Exception exception) { //do something here. } public void RunFinished(TestResult result) { //do something here. } public void RunStarted(string name, int testCount) { //do something here. } public void SuiteFinished(TestResult result) { //do something here. } public void SuiteStarted(TestName testName) { //do something here. } public void TestFinished(TestResult result) { //do something here. } public void TestOutput(TestOutput testOutput) { //do something here. } public void TestStarted(TestName testName) { //do something here. } public void UnhandledException(Exception exception) { //do something here. } #endregion } }

更多推荐

从 Nunit 获取失败测试列表

本文发布于:2023-11-06 23:55:56,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1565004.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:测试   列表   Nunit

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!