forked from BilalY/Rasagar
12 lines
235 B
C#
12 lines
235 B
C#
using System;
|
|
|
|
namespace UnityEngine.TestRunner.TestLaunchers
|
|
{
|
|
[Serializable]
|
|
internal class RemoteTestResultDataWithTestData
|
|
{
|
|
public RemoteTestResultData[] results;
|
|
public RemoteTestData[] tests;
|
|
}
|
|
}
|