Kaynağa Gözat

forgot to uncomment test suite

Brian He 6 yıl önce
ebeveyn
işleme
7859083da9

+ 19
- 19
src/test/java/com/zipcodewilmington/arrayutility/ArrayUtilityTestSuite.java Dosyayı Görüntüle

@@ -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
+}