Adjusting V2 unit tests to match previous tweak
This commit is contained in:
@@ -43,6 +43,7 @@
|
||||
type: CostToEffect
|
||||
cost: {
|
||||
type: DiscardFromHand
|
||||
forced: false
|
||||
select: choose(any)
|
||||
count: 2
|
||||
}
|
||||
|
||||
@@ -28,11 +28,11 @@ public class Card_V2_011_Tests
|
||||
}
|
||||
|
||||
@Test
|
||||
public void ToHonorThatAllegienceStatsAndKeywordsAreCorrect() throws DecisionResultInvalidException, CardNotFoundException {
|
||||
public void ToHonorThatAllegianceStatsAndKeywordsAreCorrect() throws DecisionResultInvalidException, CardNotFoundException {
|
||||
|
||||
/**
|
||||
* Set: V2
|
||||
* Name: To Honor That Allegience
|
||||
* Name: To Honor That Allegiance
|
||||
* Unique: False
|
||||
* Side: Free Peoples
|
||||
* Culture: Elven
|
||||
@@ -47,7 +47,7 @@ public class Card_V2_011_Tests
|
||||
|
||||
var card = scn.GetFreepsCard("card");
|
||||
|
||||
assertEquals("To Honor That Allegience", card.getBlueprint().getTitle());
|
||||
assertEquals("To Honor That Allegiance", card.getBlueprint().getTitle());
|
||||
assertNull(card.getBlueprint().getSubtitle());
|
||||
assertFalse(card.getBlueprint().isUnique());
|
||||
assertEquals(Side.FREE_PEOPLE, card.getBlueprint().getSide());
|
||||
@@ -59,7 +59,7 @@ public class Card_V2_011_Tests
|
||||
|
||||
// Uncomment any @Test markers below once this is ready to be used
|
||||
//@Test
|
||||
public void ToHonorThatAllegienceTest1() throws DecisionResultInvalidException, CardNotFoundException {
|
||||
public void ToHonorThatAllegianceTest1() throws DecisionResultInvalidException, CardNotFoundException {
|
||||
//Pre-game setup
|
||||
var scn = GetScenario();
|
||||
|
||||
|
||||
@@ -60,7 +60,7 @@ public class Card_V2_038_Tests
|
||||
assertEquals(Race.BALROG, card.getBlueprint().getRace());
|
||||
assertTrue(scn.hasKeyword(card, Keyword.FIERCE));
|
||||
assertTrue(scn.hasKeyword(card, Keyword.DAMAGE));
|
||||
assertEquals(2, scn.GetKeywordCount(card, Keyword.DAMAGE));
|
||||
assertEquals(1, scn.GetKeywordCount(card, Keyword.DAMAGE));
|
||||
assertEquals(14, card.getBlueprint().getTwilightCost());
|
||||
assertEquals(17, card.getBlueprint().getStrength());
|
||||
assertEquals(5, card.getBlueprint().getVitality());
|
||||
|
||||
@@ -53,7 +53,7 @@ public class Card_V2_043_Tests
|
||||
var card = scn.GetFreepsCard("card");
|
||||
|
||||
assertEquals("Theoden", card.getBlueprint().getTitle());
|
||||
assertEquals("Last of his House", card.getBlueprint().getSubtitle());
|
||||
assertEquals("Last of His House", card.getBlueprint().getSubtitle());
|
||||
assertTrue(card.getBlueprint().isUnique());
|
||||
assertEquals(Side.FREE_PEOPLE, card.getBlueprint().getSide());
|
||||
assertEquals(Culture.ROHAN, card.getBlueprint().getCulture());
|
||||
|
||||
Reference in New Issue
Block a user