mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
Tests: fixed random gen deck
This commit is contained in:
parent
78ff3c3714
commit
9268281c4b
2 changed files with 20 additions and 2 deletions
|
|
@ -208,7 +208,7 @@ public class LoadTest {
|
|||
@Test
|
||||
@Ignore
|
||||
public void test_GameThreadWithAbort() {
|
||||
// simple game thread with game abort
|
||||
// simple game thread to abort
|
||||
|
||||
LoadGame game = new LoadGame(
|
||||
"game",
|
||||
|
|
@ -221,10 +221,27 @@ public class LoadTest {
|
|||
Assert.assertEquals("aborted", game.gameResult);
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void test_GameThreadWithRealCards() {
|
||||
// simple game thread to the end with creatures cards
|
||||
|
||||
LoadGame game = new LoadGame(
|
||||
"game",
|
||||
"thread",
|
||||
createSimpleDeck("GR", false),
|
||||
createSimpleDeck("GR", false)
|
||||
);
|
||||
|
||||
game.gameStart();
|
||||
game.gameWaitToStop();
|
||||
Assert.assertEquals("finished", game.gameResult);
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void test_GameThreadWithConcede() {
|
||||
// simple game thread with game abort
|
||||
// simple game thread with with concede
|
||||
|
||||
LoadGame game = new LoadGame(
|
||||
"game",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue