使用Xunit,如何获取当前正在运行的测试的名称?
public class TestWithCommonSetupAndTearDown : IDisposable
{
public TestWithCommonSetupAndTearDown ()
{
var nameOfRunningTest = "TODO";
Console.WriteLine ("Setup for test '{0}.'", nameOfRunningTest);
}
[Fact]
public void Blub ()
{
}
public void Dispose ()
{
var nameOfRunningTest = "TODO";
Console.WriteLine ("TearDown for test '{0}.'", nameOfRunningTest);
}
}
修改
特别是,我正在寻找NUnits TestContext.CurrentContext.Test.Name
属性的替代品。
答案 0 :(得分:13)
您可以使用BeforeAfterTestAttribute
来解决您的问题。有一些方法可以使用Xunit解决您的问题,这可能是创建TestClassCommand的子类,或FactAttribute和TestCommand,但我认为BeforeAfterTestAttribute
是最简单的方法。看看下面的代码。
public class TestWithCommonSetupAndTearDown
{
[Fact]
[DisplayTestMethodName]
public void Blub()
{
}
private class DisplayTestMethodNameAttribute : BeforeAfterTestAttribute
{
public override void Before(MethodInfo methodUnderTest)
{
var nameOfRunningTest = "TODO";
Console.WriteLine("Setup for test '{0}.'", methodUnderTest.Name);
}
public override void After(MethodInfo methodUnderTest)
{
var nameOfRunningTest = "TODO";
Console.WriteLine("TearDown for test '{0}.'", methodUnderTest.Name);
}
}
}
答案 1 :(得分:0)
我不能和xUnit说话......但这在VS测试中对我有用。可能值得一试。
参考: How to get the name of the current method from code
示例:
[TestMethod]
public void TestGetMethod()
{
StackTrace st = new StackTrace();
StackFrame sf = st.GetFrame(0);
MethodBase currentMethodName = sf.GetMethod();
Assert.IsTrue(currentMethodName.ToString().Contains("TestGetMethod"));
}
答案 2 :(得分:0)
在Github中看到类似的问题,其中answer/workaround将在构造函数中使用一些注入和反射。
public class Tests
{
public Tests(ITestOutputHelper output)
{
var type = output.GetType();
var testMember = type.GetField("test", BindingFlags.Instance | BindingFlags.NonPublic);
var test = (ITest)testMember.GetValue(output);
}
<...>
}