Vorführungen für Coverage aus der Vorlesung

testSpielereien
hummel 2024-05-16 16:54:25 +02:00
parent 95297fd480
commit 8d06c2faee
2 changed files with 42 additions and 5 deletions

View File

@ -13,8 +13,13 @@ public class Würfel {
} }
public int würfle() { public int würfle() {
var a = 1;
augen = 1 + (int)(Math.random() * SEITEN); augen = 1 + (int)(Math.random() * SEITEN);
// try this with Coverage as
if (augen == 6 && a >= 1);
System.out.println("Los für MÄDN!");
return augen; return augen;
} }

View File

@ -1,22 +1,54 @@
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.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
class WürfelTest { class WürfelTest {
private Würfel w;
@BeforeAll
static void initialisiere() {
System.out.println("Einmal vor allem!");
}
@BeforeEach
void vorJedem() {
w = new Würfel();
System.out.println("Vor jedem!");
}
@Test @Test
void testWürfel() { void testWürfelEinsBisSechs() {
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 testVerteilung() {
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);