mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Upgrade JUnit4 to JUnit5 Jupiter
This commit is contained in:
parent
d17749110a
commit
e19ffe2308
@ -1,58 +0,0 @@
|
||||
package bisq.apitest;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
import org.junit.runner.Description;
|
||||
import org.junit.runner.JUnitCore;
|
||||
import org.junit.runner.Result;
|
||||
import org.junit.runner.notification.Failure;
|
||||
import org.junit.runner.notification.RunListener;
|
||||
|
||||
import static java.lang.String.format;
|
||||
|
||||
@Slf4j
|
||||
public class JUnitHelper {
|
||||
|
||||
private static boolean allPass;
|
||||
|
||||
public static void runTests(Class<?>... testClasses) {
|
||||
JUnitCore jUnitCore = new JUnitCore();
|
||||
jUnitCore.addListener(new RunListener() {
|
||||
public void testStarted(Description description) {
|
||||
log.info("{}", description);
|
||||
}
|
||||
|
||||
public void testIgnored(Description description) {
|
||||
log.info("Ignored {}", description);
|
||||
}
|
||||
|
||||
public void testFailure(Failure failure) {
|
||||
log.error("Failed {}", failure.getTrace());
|
||||
}
|
||||
});
|
||||
Result result = jUnitCore.run(testClasses);
|
||||
printTestResults(result);
|
||||
}
|
||||
|
||||
public static boolean allTestsPassed() {
|
||||
return allPass;
|
||||
}
|
||||
|
||||
private static void printTestResults(Result result) {
|
||||
log.info("Total tests: {}, Failed: {}, Ignored: {}",
|
||||
result.getRunCount(),
|
||||
result.getFailureCount(),
|
||||
result.getIgnoreCount());
|
||||
|
||||
if (result.wasSuccessful()) {
|
||||
log.info("All {} tests passed", result.getRunCount());
|
||||
allPass = true;
|
||||
} else if (result.getFailureCount() > 0) {
|
||||
log.error("{} test(s) failed", result.getFailureCount());
|
||||
result.getFailures().iterator().forEachRemaining(f -> log.error(format("%s.%s()%n\t%s",
|
||||
f.getDescription().getTestClass().getName(),
|
||||
f.getDescription().getMethodName(),
|
||||
f.getTrace())));
|
||||
}
|
||||
}
|
||||
}
|
@ -20,8 +20,8 @@ package bisq.apitest.scenario;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
|
||||
import org.junit.Ignore;
|
||||
import org.junit.jupiter.api.BeforeAll;
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.MethodOrderer;
|
||||
import org.junit.jupiter.api.Order;
|
||||
import org.junit.jupiter.api.Test;
|
||||
@ -84,7 +84,7 @@ public class OfferTest extends AbstractOfferTest {
|
||||
test.testCreateUSDBTCBuyOfferWithTriggerPrice();
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Disabled
|
||||
@Test
|
||||
@Order(5)
|
||||
public void testCreateBSQOffers() {
|
||||
|
@ -15,4 +15,6 @@ dependencies {
|
||||
implementation libs.google.guava
|
||||
implementation libs.apache.commons.lang3
|
||||
implementation libs.slf4j.api
|
||||
testImplementation libs.hamcrest
|
||||
testImplementation libs.junit.jupiter.api
|
||||
}
|
||||
|
@ -17,10 +17,10 @@
|
||||
|
||||
package bisq.asset;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.hamcrest.CoreMatchers.is;
|
||||
import static org.junit.Assert.assertThat;
|
||||
import static org.hamcrest.MatcherAssert.assertThat;
|
||||
|
||||
/**
|
||||
* Abstract base class for all {@link Asset} unit tests. Subclasses must implement the
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class ActiniumTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class AdeptioTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class AeonTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class AmitycoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class AnimecoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class ArqmaTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class AskcoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class AustraliacashTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class BSQTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class BeamTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
*/
|
||||
package bisq.asset.coins;
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
public class BitDaricTest extends AbstractAssetTest {
|
||||
public BitDaricTest() {
|
||||
super(new BitDaric());
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class BitcoinRhodiumTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class BitcoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class BitmarkTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class BitzecTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class BlurTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import java.util.Collections;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class BurntBlackCoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -20,7 +20,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class CRowdCLassicTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class CTSCoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class Cash2Test extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class ChauchaTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class CloakCoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class CreditsTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class CroatTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class DSTRATest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class DarkPayTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class DashTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class DeepOnionTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class DextroTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class DogecoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.asset.coins;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
public class DoichainTest extends AbstractAssetTest {
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class DonuTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class DragonglassTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class EmercoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class ErgoTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class FourtyTwoTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class FujicoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class GalilelTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class GambleCoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class GenesisTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class GrinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class HatchTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class HeliumTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class HorizenTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class IdaPayTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.asset.coins;
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class IridiumTest extends AbstractAssetTest {
|
||||
public IridiumTest() {
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class KekcoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class KnowYourDeveloperTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class KoreTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class KryptonTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class LBRYCreditsTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class LitecoinPlusTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class LitecoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class LitecoinZTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class LytixTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class MasariTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class MaskTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class MileTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class MirQuiXTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class MoXTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class MobitGlobalTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class MoneroTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class MonetaryUnitTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.asset.coins;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
public class MyceTest extends AbstractAssetTest {
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.asset.coins;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
public class NamecoinTest extends AbstractAssetTest {
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class NavcoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -23,7 +23,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class NdauTest extends AbstractAssetTest {
|
||||
public NdauTest() {super(new Ndau());}
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class NoirTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class NoteBlockchainTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class PENGTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class PIVXTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class PZDCTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class ParsiCoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class ParticlTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class PersonaTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class PinkcoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class PlenteumTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class QMCoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -2,7 +2,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class QbaseTest extends AbstractAssetTest {
|
||||
public QbaseTest() {
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class QwertycoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.asset.coins;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class RemixTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class RyoTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class SUB1XTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class SiaPrimeCoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.asset.coins;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
public class SixElevenTest extends AbstractAssetTest {
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class SoloTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class SpaceCashTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class SpectrecoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class StarwelsTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TEOTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class TurtleCoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class UnitedCommunityCoinTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
package bisq.asset.coins;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
|
@ -18,7 +18,7 @@
|
||||
package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class VeilTest extends AbstractAssetTest {
|
||||
|
||||
|
@ -19,7 +19,7 @@ package bisq.asset.coins;
|
||||
|
||||
import bisq.asset.AbstractAssetTest;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class VertcoinTest extends AbstractAssetTest {
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user