Class IgnoreDataSource
A source of IgnoreData to use for ignoring Graphics Tests. Inherit from this class to create a separable ignore data source.
Inherited Members
Namespace: UnityEngine.TestTools.Graphics
Assembly: UnityEngine.TestTools.Graphics.dll
Syntax
public abstract class IgnoreDataSource : IEnumerable<IgnoreGraphicsTestData>, IEnumerable
Methods
GetData()
Retrieves the ignore data. Override this method and yield the ignore data objects.
Declaration
protected abstract IEnumerable<IgnoreGraphicsTestData> GetData()
Returns
| Type | Description |
|---|---|
| IEnumerable<IgnoreGraphicsTestData> | The ignore data for the data source. |
GetEnumerator()
The enumerator for the ignore data source.
Declaration
public IEnumerator<IgnoreGraphicsTestData> GetEnumerator()
Returns
| Type | Description |
|---|---|
| IEnumerator<IgnoreGraphicsTestData> | An enumerator over the ignore data. |