A game about forced loneliness, made by TACStudios
1using System;
2using UnityEditor.TestTools.TestRunner.Api;
3
4namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
5{
6 internal interface IUtpMessageReporter
7 {
8 void ReportTestFinished(ITestResultAdaptor result);
9 void ReportTestRunStarted(ITestAdaptor testsToRun);
10 void ReportTestStarted(ITestAdaptor test);
11 }
12}