A game about forced loneliness, made by TACStudios
1using UnityEngine;
2using UnityEngine.TestTools;
3using NUnit.Framework;
4using System.Collections;
5
6class RuntimeExampleTest
7{
8 [Test]
9 public void PlayModeSampleTestSimplePasses()
10 {
11 // Use the Assert class to test conditions.
12 }
13
14 // A UnityTest behaves like a coroutine in PlayMode
15 // and allows you to yield null to skip a frame in EditMode
16 [UnityTest]
17 public IEnumerator PlayModeSampleTestWithEnumeratorPasses()
18 {
19 // Use the Assert class to test conditions.
20 // yield to skip a frame
21 yield return null;
22 }
23}