mirror of
https://github.com/maxartz15/VertexAnimation.git
synced 2025-06-12 22:39:56 +02:00
Setup.
This commit is contained in:
@ -1,20 +0,0 @@
|
||||
{
|
||||
"name": "COMPANYNAME.PACKAGENAME.Editor.Tests",
|
||||
"references": [
|
||||
"COMPANYNAME.PACKAGENAME",
|
||||
"COMPANYNAME.PACKAGENAME.Editor"
|
||||
],
|
||||
"includePlatforms": [
|
||||
"Editor"
|
||||
],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"overrideReferences": false,
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [],
|
||||
"optionalUnityReferences": [
|
||||
"TestAssemblies"
|
||||
]
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
{
|
||||
"name": "COMPANYNAME.PACKAGENAME.Tests",
|
||||
"references": [
|
||||
"COMPANYNAME.PACKAGENAME"
|
||||
],
|
||||
"includePlatforms": [],
|
||||
"excludePlatforms": [],
|
||||
"allowUnsafeCode": false,
|
||||
"overrideReferences": false,
|
||||
"precompiledReferences": [],
|
||||
"autoReferenced": true,
|
||||
"defineConstraints": [],
|
||||
"versionDefines": [],
|
||||
"optionalUnityReferences": [
|
||||
"TestAssemblies"
|
||||
]
|
||||
}
|
@ -1,25 +0,0 @@
|
||||
using UnityEngine;
|
||||
using UnityEngine.TestTools;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using NUnit.Framework;
|
||||
|
||||
namespace COMPANYNAME.PACKAGENAME.Tests
|
||||
{
|
||||
public class TestRuntimeExample
|
||||
{
|
||||
[Test]
|
||||
public void TestRuntimeExampleSimplePasses()
|
||||
{
|
||||
// Use the Assert class to test conditions
|
||||
}
|
||||
|
||||
[UnityTest]
|
||||
public IEnumerator TestRuntimeExampleEnumeratorPasses()
|
||||
{
|
||||
// Use the Assert class to test conditions.
|
||||
// Use yield to skip a frame.
|
||||
yield return null;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user