Revert "format: organize imports"

This commit is contained in:
Oleg Agafonov 2020-02-05 02:17:00 +04:00 committed by GitHub
parent 2dcd662669
commit 5adab75324
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1284 changed files with 2136 additions and 3512 deletions

View file

@ -1,17 +1,16 @@
package mage;
import static org.hamcrest.CoreMatchers.is;
import mage.abilities.effects.common.continuous.BoostTargetEffect;
import mage.constants.DependencyType;
import mage.constants.Duration;
import org.junit.Assert;
import org.junit.Test;
import java.util.ArrayList;
import java.util.Set;
import java.util.UUID;
import org.junit.Assert;
import org.junit.Test;
import mage.abilities.effects.common.continuous.BoostTargetEffect;
import mage.constants.DependencyType;
import mage.constants.Duration;
import static org.hamcrest.CoreMatchers.is;
/**
* Created by IGOUDT on 25-2-2017.

View file

@ -1,11 +1,9 @@
package mage;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Custom unit tests for {@link ManaSymbol}
*/

View file

@ -1,16 +1,14 @@
package mage;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotSame;
import static org.junit.Assert.assertTrue;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import mage.constants.ColoredManaSymbol;
import mage.constants.ManaType;
import mage.filter.FilterMana;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertNotSame;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
/**

View file

@ -1,14 +1,13 @@
package mage.cards.decks.exporter;
import static org.junit.Assert.assertEquals;
import mage.cards.decks.DeckCardInfo;
import mage.cards.decks.DeckCardLists;
import org.junit.Test;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import org.junit.Test;
import mage.cards.decks.DeckCardInfo;
import mage.cards.decks.DeckCardLists;
import static org.junit.Assert.assertEquals;
public class MtgOnlineDeckExporterTest {

View file

@ -1,14 +1,13 @@
package mage.cards.decks.exporter;
import static org.junit.Assert.assertEquals;
import mage.cards.decks.DeckCardInfo;
import mage.cards.decks.DeckCardLists;
import org.junit.Test;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import org.junit.Test;
import mage.cards.decks.DeckCardInfo;
import mage.cards.decks.DeckCardLists;
import static org.junit.Assert.assertEquals;
public class XmageDeckExporterTest {

View file

@ -1,10 +1,9 @@
package mage.cards.decks.importer;
import static org.junit.Assert.assertEquals;
import mage.cards.decks.DeckCardLists;
import org.junit.Test;
import mage.cards.decks.DeckCardLists;
import static org.junit.Assert.*;
public class DraftLogImporterTest {

View file

@ -1,10 +1,11 @@
package mage.cards.decks.importer;
import static org.junit.Assert.assertEquals;
import mage.cards.decks.DeckCardLists;
import org.junit.Test;
import mage.cards.decks.DeckCardLists;
import java.io.File;
import static org.junit.Assert.*;
public class MtgaImporterTest {

View file

@ -2,9 +2,14 @@ package mage.cards.decks.importer;
import static org.junit.Assert.assertEquals;
import java.util.Collections;
import java.util.List;
import org.junit.Test;
import mage.cards.decks.DeckCardLists;
import mage.cards.repository.CardCriteria;
import mage.cards.repository.CardInfo;
public class MwsDeckImportTest {

View file

@ -6,6 +6,8 @@ import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.junit.Assert;
import mage.cards.decks.DeckCardLists;
public class TestDeckChecker {

View file

@ -1,8 +1,6 @@
package mage.counters;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotSame;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;