Przeglądaj źródła

getting our template up here

Amy Gill 6 lat temu
rodzic
commit
f8265ccce3

+ 10
- 0
pom.xml Wyświetl plik

@@ -8,5 +8,15 @@
8 8
     <artifactId>Dicey-Lab</artifactId>
9 9
     <version>1.0-SNAPSHOT</version>
10 10
 
11
+    <dependencies>
12
+
13
+        <dependency>
14
+            <groupId>junit</groupId>
15
+            <artifactId>junit</artifactId>
16
+            <version>RELEASE</version>
17
+        </dependency>
18
+
19
+    </dependencies>
20
+
11 21
 
12 22
 </project>

+ 8
- 0
src/test/java/BinsTest.java Wyświetl plik

@@ -0,0 +1,8 @@
1
+import org.junit.Test;
2
+
3
+public class BinsTest {
4
+    @Test
5
+    public void test() {
6
+
7
+    }
8
+}

+ 10
- 0
src/test/java/DiceTest.java Wyświetl plik

@@ -0,0 +1,10 @@
1
+import org.junit.Test;
2
+
3
+public class DiceTest {
4
+    @Test
5
+    public void rollTest() {
6
+        //Given
7
+        //When
8
+        //Then
9
+    }
10
+}

+ 2
- 0
src/test/java/SimulationTest.java Wyświetl plik

@@ -0,0 +1,2 @@
1
+public class SimulationTest {
2
+}