Skip to content

Commit a76c4c8

Browse files
committed
test: update test
1 parent 3377af2 commit a76c4c8

5 files changed

Lines changed: 29 additions & 3 deletions

File tree

Assets/Tests/Editor/EditorTests.asmdef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "EditorTests.Tests",
2+
"name": "EditorTests",
33
"references": [
44
],
55
"optionalUnityReferences": [

Assets/Tests/Editor/NewTestScript.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using NUnit.Framework;
33
using UnityEngine.TestTools;
44

5-
namespace Coffee.UIParticle.Editor.Tests
5+
namespace EditorTests
66
{
77
public class NewTestScript
88
{
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using System.Collections;
2+
using NUnit.Framework;
3+
using UnityEngine.TestTools;
4+
5+
namespace EditorTests
6+
{
7+
public class ReflectionTest
8+
{
9+
// A Test behaves as an ordinary method
10+
[Test]
11+
public void NewTestScriptSimplePasses()
12+
{
13+
}
14+
}
15+
}

Assets/Tests/Editor/ReflectionTest.cs.meta

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Tests/NewTestScript.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using NUnit.Framework;
33
using UnityEngine.TestTools;
44

5-
namespace Coffee.UIParticle.Tests
5+
namespace Tests
66
{
77
public class NewTestScript
88
{

0 commit comments

Comments
 (0)