fix
Helius
2022-04-06 18b363581c21fc5a8fba893a30fd652b00433e77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cc.mrbird.febs;
 
import cc.mrbird.febs.job.MineProfitJob;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
 
/**
 * @author 
 * @date 2022-03-28
 **/
@SpringBootTest
public class JunitTest {
 
    @Autowired
    private MineProfitJob mineProfitJob;
 
    @Test
    public void incomeTest() {
        mineProfitJob.start();
    }
}