changing namespaces of performance tests (#1689)

This commit is contained in:
James Frowen 2020-04-11 17:30:18 +01:00 committed by GitHub
parent 25ee8540f9
commit 24e2af098f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 6 deletions

View File

@ -1,8 +1,7 @@
using Mirror;
using NUnit.Framework;
using Unity.PerformanceTesting;
namespace Tests
namespace Mirror.Tests.Performance
{
[Category("Performance")]
public class NetworkWriterPerformance

View File

@ -1,6 +1,5 @@
using System.Collections;
using System.Diagnostics;
using Mirror;
using Mirror.Examples;
using NUnit.Framework;
using Unity.PerformanceTesting;
@ -9,7 +8,7 @@
using UnityEngine.SceneManagement;
using UnityEngine.TestTools;
namespace Tests
namespace Mirror.Tests.Performance
{
[Category("Performance")]
[Category("Benchmark")]

View File

@ -1,13 +1,12 @@
//#if UNITY_2019_2_OR_NEWER
using System.Collections;
using Mirror;
using NUnit.Framework;
using Unity.PerformanceTesting;
using UnityEngine;
using UnityEngine.TestTools;
namespace Tests
namespace Mirror.Tests.Performance
{
class NetworkManagerTest : NetworkManager
{