@SuppressWarnings("SpringJavaAutowiringInspection")
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"classpath:spring/test-jsf.xml"})
public class Coupon {
@Autowired
private CouponService couponService;
@Test
public void importCoupon() {
CouponDTO couponDTO = new CouponDTO();
couponDTO.setSkuId(61345678L);
couponDTO.setUnionId(77868L);
couponDTO.setCouponLink("http://coupon.m.jd.com/coupons/show.action?key=dec17f9ccfa2489aaa384f4fe58e2d72&roleId=11770511&to=item.tm.com/260530126311.html");
String result = couponService.importCoupon("1111",couponDTO);
System.out.println("---------" + result);
}
}