سؤال

Is there a way to get the name of the currently executing test from ie the Setup method of a test fixture?

هل كانت مفيدة؟

المحلول

Have a look at the TestContext:

    [Test]
    public void Pass()
    {
        Console.WriteLine("Test name: {0}", TestContext.CurrentContext.Test.FullName);
    }
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top