Skip to content

Commit 159c329

Browse files
LeonLeon
authored andcommitted
update
1 parent dda7744 commit 159c329

File tree

4 files changed

+23
-2
lines changed

4 files changed

+23
-2
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,3 +149,7 @@ fabric.properties
149149
.project
150150
.classpath
151151
.settings
152+
153+
154+
#maven build target
155+
target/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# ZCW-MicroLabs-Loops
22
* Read through each of the following `README` files and complete each of the asks.
33
* [README-NumberUtilities.md](./README-NumberUtilities.md)
4-
* [README-TriangleUtilities.md](./README-NumberUtilities.md)
5-
* [README-TableUtilities.md](./README-NumberUtilities.md)
4+
* [README-TriangleUtilities.md](./README-TriangleUtilities.md)
5+
* [README-TableUtilities.md](./README-TableUtilities.md)
66

77

88

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package io.zipcoder.microlabs.mastering_loops;
2+
3+
import org.junit.runner.RunWith;
4+
import org.junit.runners.Suite;
5+
6+
/**
7+
* Created by leon on 1/31/18.
8+
*/
9+
@RunWith(Suite.class)
10+
11+
@Suite.SuiteClasses({
12+
NumberUtilitiesTest.class,
13+
TriangleUtilitiesTest.class,
14+
TableUtilitiesTest.class,
15+
})
16+
public class TestSuite {
17+
}
Binary file not shown.

0 commit comments

Comments
 (0)