Skip to content

Commit

Permalink
Update test class names
Browse files Browse the repository at this point in the history
  • Loading branch information
Exanite committed Jul 4, 2024
1 parent f1a2a82 commit 0a031f1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 24 deletions.
10 changes: 10 additions & 0 deletions Tests/Utilities/MathUtilityTests.Unity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ namespace Exanite.Core.Tests.Utilities
{
public partial class MathUtilityTests
{
[Test]
public void InverseSwizzleVector3_ReversesSwizzleVector3([Values] Vector3Swizzle swizzle)
{
var original = new Vector3(1, 2, 3);
Vector3 result;

result = original.Swizzle(swizzle).InverseSwizzle(swizzle);
Assert.AreEqual(original, result);
}

[TestCase]
public void CreateUnityPlane_ReturnsExpectedResult1()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace Exanite.Core.Tests.Utilities
{
[TestFixture]
public class GameObjectUtilityTests
public class UnityUtilityTests
{
private GameObject gameObject = null!;

Expand Down
23 changes: 0 additions & 23 deletions Tests/Utilities/VectorUtilityTests.cs

This file was deleted.

0 comments on commit 0a031f1

Please sign in to comment.