Update WürfelTest mit Testen der Verteilung
parent
fead586452
commit
cdee044dd1
|
@ -0,0 +1,3 @@
|
|||
/bin/
|
||||
/.classpath
|
||||
/.project
|
|
@ -1,22 +1,43 @@
|
|||
package de.hs_mannheim.informatik.games.kniffel.domain;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
class WürfelTest {
|
||||
|
||||
|
||||
@Test
|
||||
void testWürfel() {
|
||||
void testWürfelEinsBisSechs() {
|
||||
Würfel w = new Würfel();
|
||||
|
||||
for (int i = 0; i < 1000; i++) {
|
||||
int augen = w.würfle();
|
||||
assertTrue(augen >= 1 && augen <= 6);
|
||||
assertEquals(augen, w.getAugen());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
void testAugenVerteilung() {
|
||||
Würfel w = new Würfel();
|
||||
|
||||
Set<Integer> zahlen = new HashSet<>();
|
||||
|
||||
for (int i = 0; i < 1000; i++) {
|
||||
zahlen.add(w.würfle());
|
||||
}
|
||||
|
||||
assertEquals(6, zahlen.size());
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
@Disabled
|
||||
void test8erWürfel() {
|
||||
Würfel w = new Würfel(8);
|
||||
|
||||
|
|
|
@ -0,0 +1,50 @@
|
|||
package de.hs_mannheim.informatik.games.kniffel.domain;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
class WürfelTest {
|
||||
|
||||
@Test
|
||||
void testWürfelEinsBisSechs() {
|
||||
Würfel w = new Würfel();
|
||||
|
||||
for (int i = 0; i < 1000; i++) {
|
||||
int augen = w.würfle();
|
||||
assertTrue(augen >= 1 && augen <= 6);
|
||||
assertEquals(augen, w.getAugen());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
void testAugenVerteilung() {
|
||||
Würfel w = new Würfel();
|
||||
|
||||
Set<Integer> zahlen = new HashSet<>();
|
||||
|
||||
for (int i = 0; i < 1000; i++) {
|
||||
zahlen.add(w.würfle());
|
||||
}
|
||||
|
||||
assertEquals(6, zahlen.size());
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
@Disabled
|
||||
void test8erWürfel() {
|
||||
Würfel w = new Würfel(8);
|
||||
|
||||
for (int i = 0; i < 1000; i++) {
|
||||
int augen = w.würfle();
|
||||
assertTrue(augen >= 1 && augen <= 8);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue