No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }