M: Changing organization of project

This commit is contained in:
2023-11-09 17:15:33 +01:00
parent 2c93918e51
commit 7ac0ed4581
229 changed files with 382 additions and 5392 deletions

View File

@ -0,0 +1,25 @@
using System.Collections;
using System.Collections.Generic;
using NUnit.Framework;
using UnityEngine;
using UnityEngine.TestTools;
public class EditModeTestTemplate
{
// A Test behaves as an ordinary method
[Test]
public void EditModeTestTemplateSimplePasses()
{
// Use the Assert class to test conditions
}
// A UnityTest behaves like a coroutine in Play Mode. In Edit Mode you can use
// `yield return null;` to skip a frame.
[UnityTest]
public IEnumerator EditModeTestTemplateWithEnumeratorPasses()
{
// Use the Assert class to test conditions.
// Use yield to skip a frame.
yield return null;
}
}