Class Filter
The filter class provides the Test
Inherited Members
Namespace: UnityEditor .TestTools .TestRunner .Api
Assembly: solution.dll
Syntax
[Serializable]
public class Filter
Fields
Name | Description |
---|---|
assembly |
The name of assemblies included in the run. That is the assembly name, without the .dll file extension. E.g., MyTestAssembly |
category |
The name of a Category to include in the run. Any test or fixtures runs that have a Category matching the string. |
group |
The same as testNames, except that it allows for Regex. This is useful for running specific fixtures or namespaces. E.g. "^MyNamespace\." Runs any tests where the top namespace is MyNamespace. |
target |
The Build |
test |
An enum flag that specifies if Edit Mode or Play Mode tests should run. |
test |
The full name of the tests to match the filter. This is usually in the format FixtureName.TestName. If the test has test arguments, then include them in parenthesis. E.g. MyTestClass2.MyTestWithMultipleValues(1). |
Methods
Name | Description |
---|---|
To |
Implementation of ToString() that builds a string composed of the filter values. |