StellarXipher/Library/PackageCache/com.unity.test-framework@0a21eb82d95c/UnityEditor.TestRunner/UnityTestProtocol/Messages/TestPlanMessage.cs
2025-02-06 16:45:46 -05:00

16 lines
291 B
C#

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