PolicyTest.java
589 Bytes
package cn.runsa.crmapp;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import cn.runsa.crmapp.customer.service.CustomerAccountService;
import cn.runsa.crmapp.customer.service.CustomersRankService;
import cn.runsa.crmapp.customer.service.RankPolicyService;
/**
* @author Stephen
*/
//
public class PolicyTest extends BaseTest{
@Autowired
private RankPolicyService rankPolicyService;
@Autowired
private CustomersRankService customerService;
@Autowired
private CustomerAccountService accountService;
@Test
public void test(){
}
}