Skip to content

Commit c6a382e

Browse files
committed
* Cleanup usings on tests
1 parent 20b6086 commit c6a382e

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

KdTreeTestsLib/KdTreeTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using System;
1+
using KdTree.Math;
2+
using Microsoft.VisualStudio.TestTools.UnitTesting;
3+
using System;
24
using System.Collections.Generic;
35
using System.Linq;
4-
using Microsoft.VisualStudio.TestTools.UnitTesting;
5-
using KdTree.Math;
66

77
struct City
88
{
@@ -14,7 +14,7 @@ struct City
1414

1515
namespace KdTree.Tests
1616
{
17-
[TestClass]
17+
[TestClass]
1818
public class KdTreeTests
1919
{
2020
private KdTree<float, string> tree;

KdTreeTestsLib/NearestNeighbourListTests.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
using System;
1+
using KdTree.Math;
2+
using Microsoft.VisualStudio.TestTools.UnitTesting;
23
using System.Collections.Generic;
34
using System.Linq;
4-
using Microsoft.VisualStudio.TestTools.UnitTesting;
5-
using KdTree;
6-
using KdTree.Math;
75

86
struct Planet
97
{
@@ -13,7 +11,7 @@ struct Planet
1311

1412
namespace KdTree.Tests
1513
{
16-
[TestClass]
14+
[TestClass]
1715
public class NearestNeighbourListTests
1816
{
1917
private NearestNeighbourList<Planet, float> nearestNeighbours;

KdTreeTestsLib/PriorityQueueTests.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
using System;
1+
using KdTree.Math;
22
using Microsoft.VisualStudio.TestTools.UnitTesting;
33
using System.Collections.Generic;
44
using System.Linq;
5-
using KdTree;
6-
using KdTree.Math;
75

86
struct Person
97
{
@@ -13,7 +11,7 @@ struct Person
1311

1412
namespace KdTree.Tests
1513
{
16-
[TestClass]
14+
[TestClass]
1715
public class PriorityQueueTests
1816
{
1917
private PriorityQueue<string, float> queue;

0 commit comments

Comments
 (0)