3 writes to FilterExpressionWrapper
Microsoft.TestPlatform.CrossPlatEngine (3)
Discovery\DiscovererEnumerator.cs (1)
149context.FilterExpressionWrapper = !StringUtils.IsNullOrEmpty(testCaseFilter) ? new FilterExpressionWrapper(testCaseFilter) : null;
Execution\RunTestsWithSources.cs (1)
101runContext.FilterExpressionWrapper = !TestExecutionContext.TestCaseFilter.IsNullOrEmpty()
Execution\RunTestsWithTests.cs (1)
61runContext.FilterExpressionWrapper = null;
5 references to FilterExpressionWrapper
Microsoft.TestPlatform.CrossPlatEngine (5)
Discovery\DiscoveryContext.cs (5)
37if (FilterExpressionWrapper == null) 42if (!StringUtils.IsNullOrEmpty(FilterExpressionWrapper.ParseError)) 44throw new TestPlatformFormatException(FilterExpressionWrapper.ParseError, FilterExpressionWrapper.FilterString); 47adapterSpecificTestCaseFilter = new TestCaseFilterExpression(FilterExpressionWrapper);