move to package

This commit is contained in:
2026-01-03 18:57:56 +01:00
parent f38cfaf677
commit e463618ce4
77 changed files with 761 additions and 17 deletions

View File

@@ -0,0 +1,11 @@
{
"name": "Omarator.Mosissdk.Tests",
"references": [
"Omarator.Mosissdk"
],
"optionalUnityReferences": [
"TestAssemblies"
],
"includePlatforms": [],
"excludePlatforms": []
}

View File

@@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 7012233e3de3a49c58bb7a70bb8f04d8
AssemblyDefinitionImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,28 @@
using UnityEngine;
using UnityEngine.TestTools;
using NUnit.Framework;
using System.Collections;
namespace Omarator.Mosissdk.Tests
{
class RuntimeExampleTest
{
[Test]
public void PlayModeSampleTestSimplePasses()
{
// Use the Assert class to test conditions.
}
// A UnityTest behaves like a coroutine in PlayMode
// and allows you to yield null to skip a frame in EditMode
[UnityTest]
public IEnumerator PlayModeSampleTestWithEnumeratorPasses()
{
// Use the Assert class to test conditions.
// yield to skip a frame
yield return null;
}
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: d980d829f5e174dcaaa149cb4e879c37