fix test namespace
This commit is contained in:
parent
2d13dc20ce
commit
35961651b3
@ -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]
|
||||||
|
@ -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 ={
|
||||||
|
@ -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]
|
||||||
|
@ -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]
|
||||||
|
@ -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;
|
||||||
|
@ -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]
|
||||||
|
@ -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() {
|
||||||
|
@ -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]
|
||||||
|
@ -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]
|
||||||
|
@ -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);
|
||||||
|
@ -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;
|
||||||
|
@ -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]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user