forked from External/mage
[test] Replaced StartMultiGamesTest junit test by main method (as it fails in mtg test that breaks packaing). Not this test should be run manually.
This commit is contained in:
parent
3368f63161
commit
604249ad6f
1 changed files with 6 additions and 3 deletions
|
|
@ -10,8 +10,6 @@ import mage.client.components.MageComponents;
|
|||
import mage.client.components.MageUI;
|
||||
import mage.util.Logging;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
public class StartMultiGamesTest {
|
||||
|
||||
private final static Logger logger = Logging.getLogger(StartMultiGamesTest.class.getName());
|
||||
|
|
@ -25,7 +23,12 @@ public class StartMultiGamesTest {
|
|||
private Object sync = new Object();
|
||||
private MageUI ui;
|
||||
|
||||
@Test
|
||||
public static void main(String[] argv) throws Exception {
|
||||
new StartMultiGamesTest().test();
|
||||
|
||||
}
|
||||
|
||||
//@Test
|
||||
public void test() throws Exception {
|
||||
for (int i = 0; i < GAME_START_COUNT; i++) {
|
||||
logger.log(Level.INFO, "Starting game");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue