Fix: ShamanicRituals, Building13Test. Add: Building11Test

This commit is contained in:
2026-03-19 18:34:58 +01:00
parent 87d4fd47b8
commit b5be22b89d
3 changed files with 27 additions and 3 deletions
@@ -0,0 +1,16 @@
package it.polimi.ingsw.gc14.Model.Cards.Building.Effects;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class Building11Test {
@Test
void Building11() {
}
@Test
void applyEffect() {
}
}
@@ -9,7 +9,7 @@ class Building13Test {
@Test
void testClone() {
void Building13() {
assertThrows(IllegalArgumentException.class, () -> {
Building13 b2 = new Building13(0, 15);
});
@@ -33,9 +33,15 @@ class Building13Test {
Building13 b1 = new Building13(1, 10);
assertEquals(1, b1.getEra());
}
@Test
void applyEffect() {
Player p1 = new Player("gigi");
p1.addPrestige(10);
Building13 b1 = new Building13(1, 10);
b1.applyEffect(p1);
assertEquals(35, p1.getPrestigeValue());
}
}