polygone/Library/PackageCache/com.unity.test-framework@1.1.24/UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs
2021-08-02 05:44:37 -04:00

14 lines
291 B
C#

using System.Collections.Generic;
namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
{
internal class TestPlanMessage : Message
{
public List<string> tests;
public TestPlanMessage()
{
type = "TestPlan";
}
}
}