Skip to content

Commit 3440d16

Browse files
committed
Cleaned up the test classes
1 parent 269227c commit 3440d16

36 files changed

+47
-12
lines changed

src/com/jwetherell/algorithms/data_structures/test/AVLTreeTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import com.jwetherell.algorithms.data_structures.test.common.Utils.TestData;
1515
import com.jwetherell.algorithms.data_structures.test.common.Utils.Type;
1616

17+
@SuppressWarnings("static-method")
1718
public class AVLTreeTests {
1819

1920
@Test

src/com/jwetherell/algorithms/data_structures/test/BTreeTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import com.jwetherell.algorithms.data_structures.test.common.Utils.TestData;
1414
import com.jwetherell.algorithms.data_structures.test.common.Utils.Type;
1515

16+
@SuppressWarnings("static-method")
1617
public class BTreeTests {
1718

1819
@Test

src/com/jwetherell/algorithms/data_structures/test/BinaryHeapTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import com.jwetherell.algorithms.data_structures.test.common.Utils.TestData;
1414
import com.jwetherell.algorithms.data_structures.test.common.Utils.Type;
1515

16+
@SuppressWarnings("static-method")
1617
public class BinaryHeapTests {
1718

1819
@Test

src/com/jwetherell/algorithms/data_structures/test/BinarySearchTreeTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import com.jwetherell.algorithms.data_structures.test.common.Utils.TestData;
1414
import com.jwetherell.algorithms.data_structures.test.common.Utils.Type;
1515

16+
@SuppressWarnings("static-method")
1617
public class BinarySearchTreeTests {
1718

1819
@Test

src/com/jwetherell/algorithms/data_structures/test/CompactSuffixTrieTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import com.jwetherell.algorithms.data_structures.CompactSuffixTrie;
99

10+
@SuppressWarnings("static-method")
1011
public class CompactSuffixTrieTests {
1112

1213
@Test

src/com/jwetherell/algorithms/data_structures/test/HashArrayMappedTreeTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
import com.jwetherell.algorithms.data_structures.test.common.Utils.TestData;
1212
import com.jwetherell.algorithms.data_structures.test.common.Utils.Type;
1313

14+
@SuppressWarnings("static-method")
1415
public class HashArrayMappedTreeTests {
1516

1617
@Test

src/com/jwetherell/algorithms/data_structures/test/HashMapTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
import com.jwetherell.algorithms.data_structures.test.common.Utils.TestData;
1212
import com.jwetherell.algorithms.data_structures.test.common.Utils.Type;
1313

14+
@SuppressWarnings("static-method")
1415
public class HashMapTests {
1516

1617
@Test

src/com/jwetherell/algorithms/data_structures/test/IntervalTreeTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
import com.jwetherell.algorithms.data_structures.IntervalTree;
1212

13+
@SuppressWarnings("static-method")
1314
public class IntervalTreeTests {
1415

1516
private static boolean collectionsEqual(Collection<?> c1, Collection<?> c2) {

src/com/jwetherell/algorithms/data_structures/test/KdTreeTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
import com.jwetherell.algorithms.data_structures.KdTree;
1111

12+
@SuppressWarnings("static-method")
1213
public class KdTreeTests {
1314

1415
@Test

src/com/jwetherell/algorithms/data_structures/test/ListTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import com.jwetherell.algorithms.data_structures.test.common.Utils.TestData;
1414
import com.jwetherell.algorithms.data_structures.test.common.Utils.Type;
1515

16+
@SuppressWarnings("static-method")
1617
public class ListTests {
1718

1819
@Test

0 commit comments

Comments
 (0)