您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
12 行
477 B
12 行
477 B
using UnityEngine.TestTools;
|
|
|
|
// Work around case #1033694, unable to use PrebuildSetup types directly from assemblies that don't have special names.
|
|
// Once that's fixed, this class can be deleted and the SetupGraphicsTestCases class in Unity.TestFramework.Graphics.Editor
|
|
// can be used directly instead.
|
|
public class SetupGraphicsTestCases : IPrebuildSetup
|
|
{
|
|
public void Setup()
|
|
{
|
|
new UnityEditor.TestTools.Graphics.SetupGraphicsTestCases().Setup();
|
|
}
|
|
}
|