有没有办法用c#读取像[Owner="Tester"]这样的测试属性值

Is there a way to read test attribute value like [Owner="Tester"] with c#

我想知道是否有读取测试属性值的方法? 例如

[TestMethod , TestCategory ("Smoke Test"), Priority (1), Owner ("Tester")]

如果有办法使用 c#

将测试所有者属性的值作为字符串获取

我认为TestContext可以帮到你。

var category = (string) TestContext.CurrentContext.Test.Properties.Get("Category");

我说的是运行时,否则,您可以使用 this(tnx to )

public class Helper
    {
        public static TValue GetOwnerAttributeValue<TValue>(MethodBase method, Func<OwnerAttribute, TValue> valueSelector) 
        {
           return method.GetCustomAttributes(typeof(OwnerAttribute), true).FirstOrDefault() is OwnerAttribute attr ? valueSelector(attr) : default(TValue);
        }

    }

这样调用

var testMethod = new StackTrace().GetFrame(1)
            .GetMethod();
        var testAuthor = Helper.GetOwnerAttributeValue(testMethod, x => x.Owner);