KKSU
2024-04-17 d23645e976981bc9b670eea1d469fe8a36be309c
src/test/java/com/xcong/excoin/FollowTest.java
@@ -1,12 +1,16 @@
package com.xcong.excoin;
import com.xcong.excoin.modules.documentary.service.FollowOrderOperationService;
import com.xcong.excoin.quartz.job.FollowProfitUpdateJob;
import com.xcong.excoin.rabbit.producer.FollowProducer;
import com.xcong.excoin.utils.ThreadPoolUtils;
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 javax.annotation.Resource;
import java.math.BigDecimal;
/**
 * @author wzy
@@ -25,4 +29,20 @@
//        ThreadPoolUtils.sendFollowOrderTask(601L);
    }
    @Test
    public void strContainsTest() {
        String symbols = "BTC,ETH,LTC,BCH";
        String symbol = "BTC/USDT";
        System.out.println(symbols.contains(symbol.replace("/USDT", "")));
    }
    @Autowired
    private FollowProducer followProducer;
    @Test
    public void sendMsgTest() {
//        followProducer.sendChangeFollowOrderBond(11L, new BigDecimal("1234.1234"));
    }
}