Some FotR cards

This commit is contained in:
marcin.sciesinski
2019-09-13 17:03:57 -07:00
parent 14f99feb8f
commit 1053a5db43

View File

@@ -1,9 +1,6 @@
package com.gempukku.lotro.game.formats;
import com.gempukku.lotro.game.DeckInvalidException;
import com.gempukku.lotro.game.DefaultAdventureLibrary;
import com.gempukku.lotro.game.LotroCardBlueprintLibrary;
import com.gempukku.lotro.game.LotroFormat;
import org.junit.Test;
public class LotroFormatLibraryTest {
@@ -11,11 +8,4 @@ public class LotroFormatLibraryTest {
public void testLoad() {
LotroFormatLibrary library = new LotroFormatLibrary(new DefaultAdventureLibrary(), null);
}
@Test(expected = DeckInvalidException.class)
public void legolasGreenleafNotLegalInStandard() throws DeckInvalidException {
LotroFormatLibrary library = new LotroFormatLibrary(new DefaultAdventureLibrary(), new LotroCardBlueprintLibrary());
LotroFormat standard = library.getFormat("standard");
standard.validateCard("1_50");
}
}