admin
2019-11-13 221b5c8d0de3f6b17a00d543503a79c13b28ba12
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package org.fanli.redpack;
 
import org.junit.Test;
 
import com.yeshi.fanli.service.inter.redpack.RedPackWinInviteService;
import com.yeshi.fanli.util.BeanUtil; 
 
public class Test_RedPackWinInviteService {
 
    
//    @Test
    public void addBrandGoods() {
        try {
            RedPackWinInviteService service = BeanUtil.getBean(RedPackWinInviteService.class);
            service.orderArriveReward(4636763L, 1 ,"440456706868591243");
            System.out.println("test");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    
    
    @Test
    public void inviteSucceedReward() {
        try {
            RedPackWinInviteService service = BeanUtil.getBean(RedPackWinInviteService.class);
            service.inviteSucceedReward(6196870L);
            System.out.println("test");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    
    
    
    
}