| | |
| | | package cc.mrbird.febs; |
| | | |
| | | import cc.mrbird.febs.rabbit.producter.AgentProducer; |
| | | import cc.mrbird.febs.mall.service.IMemberProfitService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.junit.jupiter.api.Test; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.boot.test.context.SpringBootTest; |
| | | |
| | | /** |
| | | * @author wzy |
| | | * @date 2021-09-25 |
| | | **/ |
| | | @Slf4j |
| | | @SpringBootTest |
| | | public class AgentTest { |
| | | |
| | | @Autowired |
| | | private AgentProducer agentProducer; |
| | | |
| | | @Test |
| | | public void agentTest() { |
| | | // agentProducer.sendDelayMsg(1L, 10000L); |
| | | } |
| | | private IMemberProfitService memberProfitService; |
| | | // @Test |
| | | // public void getCouponAmountMap(){ |
| | | // |
| | | // memberProfitService.updateRunScore(); |
| | | // |
| | | // } |
| | | } |