Class GraphicsTestCaseSource
Abstract class for creating graphics test cases. Inherit from this class to create a custom test case source.
Inherited Members
Namespace: UnityEngine.TestTools.Graphics.TestCases
Assembly: UnityEngine.TestTools.Graphics.dll
Syntax
public abstract class GraphicsTestCaseSource
Methods
GetTestCases(IMethodInfo, ITest)
Gets the test cases for the specified method. This method is used to create a graphics test case.
Declaration
public abstract IEnumerable<GraphicsTestCase> GetTestCases(IMethodInfo methodInfo, ITest suite)
Parameters
| Type | Name | Description |
|---|---|---|
| IMethodInfo | methodInfo | The method info for the test case. |
| ITest | suite | The suite this test case belongs to. |
Returns
| Type | Description |
|---|---|
| IEnumerable<GraphicsTestCase> | An enumerable collection of graphics test cases. |