parent
993fe26a1e
commit
3738ebb1c4
@ -0,0 +1,27 @@
|
||||
package au.com.royalpay.payment.manage.apps.core.impls;
|
||||
|
||||
import au.com.royalpay.payment.manage.apps.core.CustomerImpressionService;
|
||||
|
||||
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;
|
||||
|
||||
/**
|
||||
* Created by wangning on 08/01/2018.
|
||||
*/
|
||||
@SpringBootTest
|
||||
@ActiveProfiles({"local","alipay","wechat","jd","bestpay"})
|
||||
@RunWith(SpringRunner.class)
|
||||
public class CustomerImpressionServiceImplTest {
|
||||
@Resource
|
||||
private CustomerImpressionService customerImpressionService;
|
||||
@Test
|
||||
public void generate() throws Exception {
|
||||
customerImpressionService.generate(9);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue