Full problem:
Library\PackageCache\com.unity.test-framework@1.1.27\UnityEngine.TestRunner\TestRunner\RemoteHelpers\RemoteTestResultDataWithTestData.cs(12,16): error CS0246: The type or namespace name ‘RemoteTestResultData’ could not be found (are you missing a using directive or an assembly reference?)
and second is same but anoter file:
Library\PackageCache\com.unity.test-framework@1.1.27\UnityEngine.TestRunner\TestRunner\RemoteHelpers\RemoteTestResultDataWithTestData.cs(13,16): error CS0246: The type or namespace name ‘RemoteTestData’ could not be found (are you missing a using directive or an assembly reference?)
And Code, which I didn’t touch:
using System;
using System.Collections.Generic;
using System.Linq;
using NUnit.Framework.Interfaces;
using UnityEngine.TestRunner.NUnitExtensions.Runner;
namespace UnityEngine.TestRunner.TestLaunchers
{
[Serializable]
internal class RemoteTestResultDataWithTestData
{
public RemoteTestResultData[] results;
public RemoteTestData[] tests;
}
}