|
@@ -1,19 +1,19 @@
|
1
|
|
-//package com.zipcodewilmington.arrayutility;
|
2
|
|
-//
|
3
|
|
-//import org.junit.runner.RunWith;
|
4
|
|
-//import org.junit.runners.Suite;
|
5
|
|
-//
|
6
|
|
-///**
|
7
|
|
-// * Created by leon on 3/1/18.
|
8
|
|
-// * The purpose of this class is to test all classes within this package
|
9
|
|
-// */
|
10
|
|
-//@RunWith(Suite.class)
|
11
|
|
-//
|
12
|
|
-//@Suite.SuiteClasses({
|
13
|
|
-// CountDuplicatesInMergeTest.class,
|
14
|
|
-// GetMostCommonFromMergeTest.class,
|
15
|
|
-// GetNumberOfOccurrencesTest.class,
|
16
|
|
-// RemoveValueTest.class
|
17
|
|
-//})
|
18
|
|
-//public class ArrayUtilityTestSuite {
|
19
|
|
-//}
|
|
1
|
+package com.zipcodewilmington.arrayutility;
|
|
2
|
+
|
|
3
|
+import org.junit.runner.RunWith;
|
|
4
|
+import org.junit.runners.Suite;
|
|
5
|
+
|
|
6
|
+/**
|
|
7
|
+ * Created by leon on 3/1/18.
|
|
8
|
+ * The purpose of this class is to test all classes within this package
|
|
9
|
+ */
|
|
10
|
+@RunWith(Suite.class)
|
|
11
|
+
|
|
12
|
+@Suite.SuiteClasses({
|
|
13
|
+ CountDuplicatesInMergeTest.class,
|
|
14
|
+ GetMostCommonFromMergeTest.class,
|
|
15
|
+ GetNumberOfOccurrencesTest.class,
|
|
16
|
+ RemoveValueTest.class
|
|
17
|
+})
|
|
18
|
+public class ArrayUtilityTestSuite {
|
|
19
|
+}
|