mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-26 00:15:18 -04:00
account registration
This commit is contained in:
parent
28521c11a0
commit
38199b9b5f
85 changed files with 1736 additions and 730 deletions
16
src/test/java/io/bitsquare/gui/util/VerificationTest.java
Normal file
16
src/test/java/io/bitsquare/gui/util/VerificationTest.java
Normal file
|
@ -0,0 +1,16 @@
|
|||
package io.bitsquare.gui.util;
|
||||
|
||||
import io.bitsquare.bank.BankAccountType;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
public class VerificationTest
|
||||
{
|
||||
@Test
|
||||
public void testVerifyBankAccountData()
|
||||
{
|
||||
// TODO define rules for prim. and sec. ID per bank account type
|
||||
assertTrue(Verification.verifyAccountIDsByBankTransferType(BankAccountType.BankAccountTypeEnum.SEPA, "DE11876543210000123456", "12345678"));
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue