houzhongjian
2025-03-12 e45def33335de603ac9e332fa21fba446e0994e8
src/test/java/com/iailab/sdk/demo/HttpClientDemoTest.java
@@ -6,6 +6,8 @@
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import java.util.Map;
@RunWith(SpringRunner.class)
@SpringBootTest
@@ -14,20 +16,6 @@
    @Autowired
    private HttpClientDemo httpClientDemo;
    @Test
    public void testDoGet() throws Exception {
        httpClientDemo.HttpGet();
    }
    @Test
    public void testDoPost() throws Exception {
        httpClientDemo.HttpPost();
    }
    @Test
    public void testGetDeviceValue() throws Exception {
        httpClientDemo.HttpGetDeviceValue();
    }
    @Test
    public void authenticate() {
@@ -38,4 +26,28 @@
    public void refreshToken() throws Exception {
        httpClientDemo.refreshToken();
    }
    @Test
    public void testQueryPlanChart() throws Exception {
        Map<String, Object> stringObjectMap = httpClientDemo.queryPlanChart();
        System.out.println(stringObjectMap);
    }
    @Test
    public void testQueryPointsRealValue() throws Exception {
        Map<String, Object> stringObjectMap = httpClientDemo.queryPointsRealValue();
        System.out.println(stringObjectMap);
    }
    @Test
    public void testDoHttpPost() throws Exception {
        // 准备参数
        httpClientDemo.doHttpPost();
    }
    @Test
    public void testDoHttpGet() throws Exception {
        // 准备参数
        httpClientDemo.doHttpGet();
    }
}