mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-27 00:45:23 -04:00
remove @Nullable/@NotNull annotations (too noisy and better use Optional/Either instead to avoid null pointer exc.)
This commit is contained in:
parent
d9410f91a0
commit
4f26d76746
88 changed files with 1539 additions and 1122 deletions
|
@ -1,6 +1,7 @@
|
|||
package io.bitsquare;
|
||||
|
||||
import io.bitsquare.btc.BtcValidatorTest;
|
||||
import io.bitsquare.currency.BitcoinTest;
|
||||
import io.bitsquare.gui.util.BitSquareConverterTest;
|
||||
import io.bitsquare.gui.util.BitSquareValidatorTest;
|
||||
import org.junit.runner.RunWith;
|
||||
|
@ -10,7 +11,8 @@ import org.junit.runners.Suite;
|
|||
@Suite.SuiteClasses({
|
||||
BtcValidatorTest.class,
|
||||
BitSquareConverterTest.class,
|
||||
BitSquareValidatorTest.class
|
||||
BitSquareValidatorTest.class,
|
||||
BitcoinTest.class
|
||||
})
|
||||
|
||||
public class BitSquareTestSuite
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue