Is it possible to construct a Visual Studio Test Explorer search expression that will actually filter NUnit tests based on the name AND value of a Property attribute? For example,
something like Trait:TestSize=Large
. I can't seem to figure out how to get this to work and after hours of searching it's unclear if I should be looking for documentation from Visual Studio, NUnit, or the NUnit Test Adapter.
[TestFixture]
public class SampleTestFixture {
[Test]
[Property("TestSize", "Large")]
public void Test1() { ... }
}
More details:
- Currently using VS 2015, but I want this to work in VS 2017 and 2019
- Using NUnit 3.12
- Using NUnit3TestAdapter 3.8