File tree Expand file tree Collapse file tree 4 files changed +23
-2
lines changed
src/test/java/io/zipcoder/microlabs/mastering_loops
target/test-classes/io/zipcoder/microlabs/mastering_loops Expand file tree Collapse file tree 4 files changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -149,3 +149,7 @@ fabric.properties
149149.project
150150.classpath
151151.settings
152+
153+
154+ # maven build target
155+ target /
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments