説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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