mirror of
https://github.com/maxartz15/VertexAnimation.git
synced 2024-11-09 22:32:55 +01:00
26 lines
627 B
C#
26 lines
627 B
C#
|
using UnityEngine;
|
||
|
using UnityEngine.TestTools;
|
||
|
using UnityEditor;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using NUnit.Framework;
|
||
|
|
||
|
namespace COMPANYNAME.PACKAGENAME.Editor.Tests
|
||
|
{
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|