fix test namespace

This commit is contained in:
naninunenoy 2020-11-30 00:30:24 +09:00
parent 2d13dc20ce
commit 35961651b3
12 changed files with 21 additions and 12 deletions

View File

@ -3,8 +3,9 @@ using AsmdefHelper.DependencyGraph.Editor.DependencyNode.Sort;
using NUnit.Framework; using NUnit.Framework;
using UnityEditor; using UnityEditor;
using UnityEngine.TestTools; using UnityEngine.TestTools;
using AsmdefHelper.DependencyGraph.Editor.DependencyNode;
namespace AsmdefHelper.DependencyGraph.Editor.DependencyNode.Tests { namespace AsmdefHelper.DependencyGraph.Editor.Tests {
public class DependencyNodeExtensionsTest { public class DependencyNodeExtensionsTest {
[SetUp] [SetUp]

View File

@ -1,10 +1,11 @@
using System.Collections; using System.Collections;
using System.Linq; using System.Linq;
using AsmdefHelper.DependencyGraph.Editor.DependencyNode;
using NUnit.Framework; using NUnit.Framework;
using UnityEditor; using UnityEditor;
using UnityEngine.TestTools; using UnityEngine.TestTools;
namespace AsmdefHelper.DependencyGraph.Editor.DependencyNode.Tests { namespace AsmdefHelper.DependencyGraph.Editor.Tests {
public class DomainGroupTest { public class DomainGroupTest {
readonly string[] inputs ={ readonly string[] inputs ={

View File

@ -1,9 +1,10 @@
using System.Collections; using System.Collections;
using AsmdefHelper.DependencyGraph.Editor.DependencyNode;
using NUnit.Framework; using NUnit.Framework;
using UnityEditor; using UnityEditor;
using UnityEngine.TestTools; using UnityEngine.TestTools;
namespace AsmdefHelper.DependencyGraph.Editor.DependencyNode.Tests { namespace AsmdefHelper.DependencyGraph.Editor.Tests {
public class DomainUnitTest { public class DomainUnitTest {
[Test] [Test]

View File

@ -1,9 +1,10 @@
using System.Collections; using System.Collections;
using AsmdefHelper.DependencyGraph.Editor.DependencyNode;
using NUnit.Framework; using NUnit.Framework;
using UnityEditor; using UnityEditor;
using UnityEngine.TestTools; using UnityEngine.TestTools;
namespace AsmdefHelper.DependencyGraph.Editor.DependencyNode.Tests { namespace AsmdefHelper.DependencyGraph.Editor.Tests {
public class HashSetDependencyNodeTest { public class HashSetDependencyNodeTest {
[Test] [Test]

View File

@ -1,12 +1,13 @@
using System.Collections; using System.Collections;
using System.Linq; using System.Linq;
using AsmdefHelper.DependencyGraph.Editor.DependencyNode;
using AsmdefHelper.DependencyGraph.Editor.DependencyNode.Sort; using AsmdefHelper.DependencyGraph.Editor.DependencyNode.Sort;
using NUnit.Framework; using NUnit.Framework;
using UnityEditor; using UnityEditor;
using UnityEngine; using UnityEngine;
using UnityEngine.TestTools; using UnityEngine.TestTools;
namespace AsmdefHelper.DependencyGraph.Editor.DependencyNode.Tests { namespace AsmdefHelper.DependencyGraph.Editor.Tests {
public class LinerSortStrategyTest { public class LinerSortStrategyTest {
const float d = 10.0F; const float d = 10.0F;
const float w = 10.0F; const float w = 10.0F;

View File

@ -4,7 +4,7 @@ using NUnit.Framework;
using UnityEditor; using UnityEditor;
using UnityEngine.TestTools; using UnityEngine.TestTools;
namespace AsmdefHelper.DependencyGraph.Editor.DependencyNode.Tests { namespace AsmdefHelper.DependencyGraph.Editor.Tests {
public class NodeGridTest { public class NodeGridTest {
[Test] [Test]

View File

@ -1,10 +1,11 @@
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using AsmdefHelper.DependencyGraph.Editor.DependencyNode;
using NUnit.Framework; using NUnit.Framework;
using UnityEngine; using UnityEngine;
using UnityEngine.TestTools; using UnityEngine.TestTools;
namespace AsmdefHelper.DependencyGraph.Editor.DependencyNode.Tests { namespace AsmdefHelper.DependencyGraph.Editor.Tests {
public class NodeIdTest { public class NodeIdTest {
[Test] [Test]
public void TestNodeIdValue() { public void TestNodeIdValue() {

View File

@ -1,10 +1,11 @@
using System.Collections; using System.Collections;
using System.Linq; using System.Linq;
using AsmdefHelper.DependencyGraph.Editor.DependencyNode;
using NUnit.Framework; using NUnit.Framework;
using UnityEditor; using UnityEditor;
using UnityEngine.TestTools; using UnityEngine.TestTools;
namespace AsmdefHelper.DependencyGraph.Editor.DependencyNode.Tests { namespace AsmdefHelper.DependencyGraph.Editor.Tests {
public class NodeProcessorTest { public class NodeProcessorTest {
[SetUp] [SetUp]

View File

@ -2,8 +2,9 @@ using System.Collections;
using NUnit.Framework; using NUnit.Framework;
using UnityEditor; using UnityEditor;
using UnityEngine.TestTools; using UnityEngine.TestTools;
using AsmdefHelper.DependencyGraph.Editor.DependencyNode;
namespace AsmdefHelper.DependencyGraph.Editor.DependencyNode.Tests { namespace AsmdefHelper.DependencyGraph.Editor.Tests {
public class NodeProfileTest { public class NodeProfileTest {
[Test] [Test]

View File

@ -1,6 +1,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using AsmdefHelper.DependencyGraph.Editor.DependencyNode;
namespace AsmdefHelper.DependencyGraph.Editor.DependencyNode.Tests { namespace AsmdefHelper.DependencyGraph.Editor.Tests {
public static class Ids { public static class Ids {
public static readonly NodeId _0 = new NodeId(0); public static readonly NodeId _0 = new NodeId(0);

View File

@ -6,7 +6,7 @@ using UnityEditor;
using UnityEngine; using UnityEngine;
using UnityEngine.TestTools; using UnityEngine.TestTools;
namespace AsmdefHelper.DependencyGraph.Editor.DependencyNode.Tests { namespace AsmdefHelper.DependencyGraph.Editor.Tests {
public class RandomSortStrategyTest { public class RandomSortStrategyTest {
const float d = 10.0F; const float d = 10.0F;
const float w = 10.0F; const float w = 10.0F;

View File

@ -5,7 +5,7 @@ using NUnit.Framework;
using UnityEditor; using UnityEditor;
using UnityEngine.TestTools; using UnityEngine.TestTools;
namespace AsmdefHelper.DependencyGraph.Editor.DependencyNode.Tests { namespace AsmdefHelper.DependencyGraph.Editor.Tests {
public class SquareValueProviderTest { public class SquareValueProviderTest {
[Test] [Test]