Helius
2021-09-25 d74032da9b0a6a893a8a03e3fa64d2f0ae2a9f2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cc.mrbird.febs;
 
import cc.mrbird.febs.rabbit.producter.AgentProducer;
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.sendOrderReturn(1L);
    }
}