refactor: keep consistent namespace

This commit is contained in:
Paul Pacheco 2019-04-06 07:33:47 -05:00
parent 3a7646bab7
commit 76392a3a4e
5 changed files with 149 additions and 146 deletions

View File

@ -1,5 +1,5 @@
using NUnit.Framework;
namespace Mirror
namespace Mirror.Tests
{
[TestFixture]
public class FloatBytePackerTest

View File

@ -1,6 +1,6 @@
using NUnit.Framework;
namespace Mirror
namespace Mirror.Tests
{
struct TestMessage : IMessageBase
{

View File

@ -1,5 +1,5 @@
using NUnit.Framework;
namespace Mirror
namespace Mirror.Tests
{
[TestFixture]
public class MessagePackerTest

View File

@ -4,6 +4,8 @@
using UnityEditor.Compilation;
using UnityEngine;
namespace Mirror.Tests
{
public class WeaverAssembler : MonoBehaviour
{
public const string OutputDirectory = "Assets/Mirror/Tests/WeaverTests~/";
@ -186,3 +188,4 @@ private static void BuildAssembly(bool wait)
}
}
}
}

View File

@ -7,7 +7,7 @@
using Mirror.Weaver;
namespace Mirror
namespace Mirror.Tests
{
[TestFixture]
public class WeaverTest