An easy to use Unity 3D library for creating illustrated Interactive Fiction games and more.

13 lines
354 B

using System;
using System.Collections.Generic;
using UnityEngine;
using UnityTest.UnitTestRunner;
namespace UnityTest
{
public interface IUnitTestEngine
{
UnitTestRendererLine GetTests(out UnitTestResult[] results, out string[] categories);
void RunTests(TestFilter filter, ITestRunnerCallback testRunnerEventListener);
}
}