暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

TestRunData.cs 289B

12345678910111213
  1. using System;
  2. namespace UnityEditor.TestRunner.UnityTestProtocol
  3. {
  4. [Serializable]
  5. public class TestRunData
  6. {
  7. public string SuiteName;
  8. public string[] TestsInFixture;
  9. public long OneTimeSetUpDuration;
  10. public long OneTimeTearDownDuration;
  11. }
  12. }