From 11b6a4a3418bb0ccdbee705b0033582e9ed0a454 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Tue, 4 Nov 2014 20:37:01 +0100 Subject: [PATCH] Remove BitsquareTestSuite This class is unnecessary; Gradle runs all JUnit test classes by default, and IDEA and other IDEs automatically detect JUnit test classes as well. --- .../java/io/bitsquare/BitsquareTestSuite.java | 41 ------------------- 1 file changed, 41 deletions(-) delete mode 100644 src/test/java/io/bitsquare/BitsquareTestSuite.java diff --git a/src/test/java/io/bitsquare/BitsquareTestSuite.java b/src/test/java/io/bitsquare/BitsquareTestSuite.java deleted file mode 100644 index ba5df56737..0000000000 --- a/src/test/java/io/bitsquare/BitsquareTestSuite.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * This file is part of Bitsquare. - * - * Bitsquare is free software: you can redistribute it and/or modify it - * under the terms of the GNU Affero General Public License as published by - * the Free Software Foundation, either version 3 of the License, or (at - * your option) any later version. - * - * Bitsquare is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public - * License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with Bitsquare. If not, see . - */ - -package io.bitsquare; - -import io.bitsquare.btc.RestrictionsTest; -import io.bitsquare.gui.main.trade.createoffer.CreateOfferPMTest; -import io.bitsquare.gui.util.BSFormatterTest; -import io.bitsquare.gui.util.validation.BtcValidatorTest; -import io.bitsquare.gui.util.validation.FiatValidatorTest; - -import org.junit.runner.RunWith; -import org.junit.runners.Suite; - -@RunWith(Suite.class) -@Suite.SuiteClasses({ - RestrictionsTest.class, - /* P2PNodeTest.class,*/ - FiatValidatorTest.class, - RestrictionsTest.class, - CreateOfferPMTest.class, - BSFormatterTest.class, - BtcValidatorTest.class -}) - -public class BitsquareTestSuite { -}