Enum IgnoreGraphicsTestMode
Enumeration for the different modes of ignoring graphics tests.
Namespace: UnityEngine.TestTools.Graphics
Assembly: UnityEngine.TestTools.Graphics.dll
Syntax
public enum IgnoreGraphicsTestMode
Fields
| Name | Description |
|---|---|
| MatchEnd | Ignore the test case if the pattern matches the end of the test case name. |
| MatchExact | Ignore the test case if the pattern matches the test case name exactly. |
| MatchRegex | Ignore the test case if the pattern matches the test case name using a regular expression. |
| MatchRegexIgnoreCase | Ignore the test case if the pattern matches the test case name using a regular expression, ignoring case. |
| MatchStart | Ignore the test case if the pattern matches the start of the test case name. |