package com.xcong.excoin;
|
|
import com.xcong.excoin.rabbit.producer.OtcProducter;
|
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;
|
|
import java.util.concurrent.TimeUnit;
|
|
@Slf4j
|
@SpringBootTest
|
public class OtcTest {
|
|
@Autowired
|
private OtcProducter otcProducter;
|
|
@Test
|
public void rabbitTest() {
|
otcProducter.sendDelayOrderMsg("123456");
|
|
while(true){
|
try {
|
TimeUnit.SECONDS.sleep(1);
|
} catch (InterruptedException e) {
|
e.printStackTrace();
|
}
|
|
}
|
}
|
}
|