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

IgnoreTest.cs 578B

1234567891011121314151617181920212223242526
  1. using System;
  2. namespace UnityEditor.TestTools.TestRunner.Api
  3. {
  4. [Serializable]
  5. internal class IgnoreTest
  6. {
  7. public string test { get; set; }
  8. public string ignoreComment { get; set; }
  9. public UnityEngine.TestTools.IgnoreTest ParseToEngine()
  10. {
  11. return new UnityEngine.TestTools.IgnoreTest
  12. {
  13. test = test,
  14. ignoreComment = ignoreComment
  15. };
  16. }
  17. public override string ToString()
  18. {
  19. return $"'{test}': '{ignoreComment}'";
  20. }
  21. }
  22. }