Skip to content

Commit 01f5d09

Browse files
committed
Rename namespaces
1 parent f9ac6c4 commit 01f5d09

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Source/Assert.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace FlaxEngine.UnitTesting
3+
namespace FlaxCommunity.UnitTesting
44
{
55
/// <summary>
66
/// Special type of exception that is used to terminate the test case early <seealso cref="Assert.Pass"/>

Source/Editor/TestRunner.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
using FlaxEditor;
22
using FlaxEditor.GUI;
3+
using FlaxEngine;
34
using System;
45
using System.Collections.Generic;
56
using System.Linq;
67
using System.Reflection;
8+
using FlaxCommunity.UnitTesting;
79

8-
namespace FlaxEngine.UnitTesting.Editor
10+
namespace FlaxCommunity.UnitTesting.Editor
911
{
1012
public class TestRunner : EditorPlugin
1113
{
@@ -32,7 +34,6 @@ public override void InitializeEditor()
3234

3335
_mmBtn = Editor.UI.MainMenu.AddButton("Unit Tests");
3436
_mmBtn.ContextMenu.AddButton("Run unit tests").Clicked += RunTests;
35-
3637
}
3738

3839
public override void Deinitialize()

Source/ExampleClass.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#if !FLAX_PLUGIN
2-
using FlaxEngine.UnitTesting;
2+
using FlaxCommunity.UnitTesting;
33

44
namespace UnitTests
55
{

Source/TestAttributes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace FlaxEngine.UnitTesting
3+
namespace FlaxCommunity.UnitTesting
44
{
55
/// <summary>
66
/// A test case

0 commit comments

Comments
 (0)