What problem does it solve? Test filter syntax differs across platforms (VSTest vs Microsoft Testing Platform) and frameworks (MSTest, NUnit, xUnit v3, TUnit), making it easy to write invalid filter expressions when running or migrating .NET test suites. ## Core Features & Use Cases - VSTest filter reference: Documents --filter expression syntax, operators, combinators, and supported properties per framework. - MTP filter reference: Covers MSTest/NUnit passthrough syntax, xUnit v3 framework-specific flags and query filter language, and TUnit --treenode-filter path syntax. - VSTest-to-MTP translation table: Maps legacy VSTest filter expressions to xUnit v3 native equivalents for migration workflows. - Use Case: When migrating a test suite from VSTest to Microsoft Testing Platform with xUnit v3, look up how to convert FullyQualifiedName~ClassName into --filter-class *ClassName*. ## Quick Start Ask the AI to show the correct filter syntax for running only integration tests in xUnit v3 on Microsoft Testing Platform.