WES-57-test-framework

This commit is contained in:
Tibe Habils
2023-03-08 14:15:00 +00:00
committed by Victor Mylle
parent adf907a6ca
commit 960f6e0681
11 changed files with 118 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System.Collections;
using System.Collections.Generic;
using NUnit.Framework;
using UnityEngine;
using UnityEngine.TestTools;
public class BasicTest
{
// check if edit mode tests works
[Test]
public void AlwaysTrueTest()
{
Assert.True(true);
}
}