暫無描述
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.

TestPlanMessage.cs 277B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
  3. {
  4. internal class TestPlanMessage : Message
  5. {
  6. public List<string> tests;
  7. public TestPlanMessage()
  8. {
  9. type = "TestPlan";
  10. }
  11. }
  12. }