corrected a pieceTest

This commit is contained in:
Benjamin Feyer
2024-12-13 04:08:36 +01:00
parent dc7dae5db9
commit 379e4bcec1

View File

@@ -214,13 +214,19 @@ public void testChangeActivePlayer() {
// TODO: Implement test logic for changing the active player // TODO: Implement test logic for changing the active player
} }
@Test
public void testUseTurbo() {
//TODO
}
/** /**
* this test-method tests the chances fo the turbo-card * this test-method tests the chances fo the turbo-card
* <p> * <p>
* T012 * T012
*/ */
@Test @Test
public void testUseTurbo() { public void testMuliplicationChance() {
Die die = new Die(); Die die = new Die();
ArrayList<Integer> modifier0 = new ArrayList<>(); ArrayList<Integer> modifier0 = new ArrayList<>();
@@ -242,11 +248,6 @@ public void testUseTurbo() {
assertTrue(1950000 < modifier0.size() && modifier0.size() < 2050000); assertTrue(1950000 < modifier0.size() && modifier0.size() < 2050000);
} }
@Test
public void testMuliplicationChance() {
// TODO: Implement test logic for testing multiplication chance power-up
}
// UC-Game-10 // UC-Game-10
@Test @Test
public void testTurboOn6() { public void testTurboOn6() {