parent
15fe2c59fb
commit
fd74bf0e22
@ -0,0 +1,58 @@
|
||||
package au.com.royalpay.payment.manage.application.core.impls;
|
||||
|
||||
import au.com.royalpay.payment.manage.application.core.SimpleClientApplyService;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.context.ActiveProfiles;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
@SpringBootTest
|
||||
@ActiveProfiles({ "dev", "alipay", "wechat", "jd", "bestpay" })
|
||||
@RunWith(SpringRunner.class)
|
||||
public class SimpleClientApplyServiceImplTest {
|
||||
|
||||
@Resource
|
||||
private SimpleClientApplyService simpleClientApplyService;
|
||||
|
||||
@Test
|
||||
public void verifyRegisterSMSCode() {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void newAccount() {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void partnerSignIn() {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void getAndSendSmsCode() {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void sendVerifyEmail() {
|
||||
simpleClientApplyService.sendVerifyEmail("kira.wang@royalpay.com.au",9);
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void checkOrGenerateRegisterProcessKey() {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void deleteRegisterProcessKey() {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void checkOrGenerateVerifyMailKey() {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void deleteVerifyMailKey() {
|
||||
}
|
||||
}
|
Loading…
Reference in new issue