Firstborn/Library/PackageCache/com.unity.test-framework@1..../UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05:00

15 lines
277 B
C#

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