Update WürfelTest mit Testen der Verteilung

main
hummel 2024-05-16 16:56:48 +02:00
parent fead586452
commit cdee044dd1
3 changed files with 77 additions and 3 deletions

3
.gitignore vendored 100644
View File

@ -0,0 +1,3 @@
/bin/
/.classpath
/.project

View File

@ -1,22 +1,43 @@
package de.hs_mannheim.informatik.games.kniffel.domain; 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; import org.junit.jupiter.api.Test;
class WürfelTest { class WürfelTest {
@Test @Test
void testWürfel() { void testWürfelEinsBisSechs() {
Würfel w = new Würfel(); Würfel w = new Würfel();
for (int i = 0; i < 1000; i++) { for (int i = 0; i < 1000; i++) {
int augen = w.würfle(); int augen = w.würfle();
assertTrue(augen >= 1 && augen <= 6); assertTrue(augen >= 1 && augen <= 6);
assertEquals(augen, w.getAugen());
} }
} }
@Test @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() { void test8erWürfel() {
Würfel w = new Würfel(8); Würfel w = new Würfel(8);

View File

@ -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);
}
}
}