template-unity-package/Tests/Editor/TestEditorExample.cs

26 lines
627 B
C#
Raw Normal View History

2020-08-23 15:58:28 +02:00
using UnityEngine;
using UnityEngine.TestTools;
using UnityEditor;
using System.Collections;
using System.Collections.Generic;
using NUnit.Framework;
2020-09-01 17:11:10 +02:00
namespace COMPANYNAME.PACKAGENAME.Editor.Tests
2020-08-23 15:58:28 +02:00
{
public class TestEditorExample
{
[Test]
public void TestEditorExampleSimplePasses()
{
// Use the Assert class to test conditions
}
[UnityTest]
public IEnumerator TestEditorExampleWithEnumeratorPasses()
{
// Use the Assert class to test conditions.
// Use yield to skip a frame.
yield return null;
}
}
2020-09-01 17:11:10 +02:00
}