在我的解决方案中,我有 dll,其中包含以下格式的方法
[TestMethod]
[TestProperty("Priority", "P0")]
[TestProperty("Owner", "vbnmg")]
[TestProperty("Title", "Verify the log accessible")]
[TestProperty("ID", "1")]
public void LogAccesiblityTest()
{
//Test Code
}
某些方法具有不同的优先级、所有者、ID 和标题
通过提供 dll 名称和搜索条件(优先级、所有者、ID 和标题),我可以获得给定优先级分组或所有者组等中的方法名称吗?
我有代码,通过它我可以获取使用的方法名称和参数的详细信息,但我没有得到如何从测试属性获取信息。
有人可以建议如何做到这一点。