diff --git a/gemp-lotr/gemp-lotr-server/src/test/java/com/gempukku/lotro/cards/official/set1/Card1_011Tests.java b/gemp-lotr/gemp-lotr-server/src/test/java/com/gempukku/lotro/cards/official/set1/Card1_011Tests.java new file mode 100644 index 000000000..fd28da7c3 --- /dev/null +++ b/gemp-lotr/gemp-lotr-server/src/test/java/com/gempukku/lotro/cards/official/set1/Card1_011Tests.java @@ -0,0 +1,55 @@ +package com.gempukku.lotro.cards.official.set1; + +import com.gempukku.lotro.cards.GenericCardTestHelper; +import com.gempukku.lotro.common.Phase; +import com.gempukku.lotro.game.CardNotFoundException; +import com.gempukku.lotro.game.PhysicalCardImpl; +import com.gempukku.lotro.logic.decisions.DecisionResultInvalidException; +import org.junit.Test; + +import java.util.HashMap; + +import static junit.framework.Assert.assertEquals; + +// Tidings of Erebor +public class Card1_011Tests +{ + protected GenericCardTestHelper GetScenario() throws CardNotFoundException, DecisionResultInvalidException { + return new GenericCardTestHelper( + new HashMap() + {{ + put("farin", "1_11"); + + put("goblin", "1_178"); + }} + ); + } + + @Test + public void FarinStrengthBoostWhileSkirmishingOrc() throws DecisionResultInvalidException, CardNotFoundException { + //Pre-game setup + GenericCardTestHelper scn = GetScenario(); + + PhysicalCardImpl farin = scn.GetFreepsCard("farin"); + scn.FreepsMoveCharToTable(farin); + + PhysicalCardImpl goblin = scn.GetShadowCard("goblin"); + scn.ShadowMoveCharToTable(goblin); + + scn.StartGame(); + scn.FreepsSkipCurrentPhaseAction(); + + scn.SkipToPhase(Phase.ASSIGNMENT); + + scn.SkipCurrentPhaseActions(); + + scn.FreepsAssignToMinions(farin, goblin); + scn.FreepsResolveSkirmish(farin); + + assertEquals(7, scn.GetStrength(farin)); + + } + + + +} \ No newline at end of file