Class GraphicsTestCaseCreatedArgs
Event arguments for the GraphicsTestAttribute.TestCaseCreated event. This class contains the test case and the setup actions associated with the test case.
Inherited Members
Namespace: UnityEngine.TestTools.Graphics
Assembly: UnityEngine.TestTools.Graphics.dll
Syntax
public class GraphicsTestCaseCreatedArgs : EventArgs
Properties
SetupActions
The setup actions associated with the test case.
Declaration
public IEnumerable<SetupAction> SetupActions { get; init; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<SetupAction> |
TestCase
The test case that was created. The type of the test case will depend on the type returned by the test case source.
Declaration
public GraphicsTestCase TestCase { get; init; }
Property Value
| Type | Description |
|---|---|
| GraphicsTestCase |