啊鑫
2025-04-10 3c16d3b1b3609823254ff5c163c6e9df03e1ddbc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.gs.xiaomi;
 
import com.gs.xiaomi.service.XM104Service;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
 
@SpringBootTest
class XiaomiApplicationTests {
 
    @Autowired
    private XM104Service xm104Service;
 
    @Test
    void contextLoads() throws Exception {
        xm104Service.getDb();
    }
}