- Random decks for the human will now include cards with RemAIDeck.

This commit is contained in:
Sloth
2011-08-28 12:20:52 +00:00
parent ad3a6055fb
commit 0093ad34cf
7 changed files with 25 additions and 15 deletions

View File

@@ -18,7 +18,7 @@ public class Generate2ColorDeckTest {
@Test(enabled = false)
public void Generate2ColorDeckTest1() {
Generate2ColorDeck gen = new Generate2ColorDeck("white", "blue");
CardList cardList = gen.get2ColorDeck(60);
CardList cardList = gen.get2ColorDeck(60, null);
Assert.assertNotNull(cardList);
}
}

View File

@@ -19,7 +19,7 @@ public class Generate3ColorDeckTest {
@Test(timeOut = 1000, enabled = false)
public void Generate3ColorDeckTest1() {
Generate3ColorDeck gen = new Generate3ColorDeck("white", "blue", "black");
CardList cardList = gen.get3ColorDeck(60);
CardList cardList = gen.get3ColorDeck(60, null);
Assert.assertNotNull(cardList);
}
}

View File

@@ -19,7 +19,7 @@ public class Generate5ColorDeckTest {
@Test(timeOut = 1000, enabled = false)
public void Generate5ColorDeckTest1() {
Generate5ColorDeck gen = new Generate5ColorDeck();
CardList cardList = gen.get5ColorDeck(60);
CardList cardList = gen.get5ColorDeck(60, null);
Assert.assertNotNull(cardList);
}
}