潘志宝
2025-03-20 a5353feebdef3812ea7692603263fe0217d5bc15
src/test/java/com/iailab/sdk/demo/HttpClientDemoTest.java
@@ -1,5 +1,6 @@
package com.iailab.sdk.demo;
import com.iailab.sdk.auth.client.common.pojo.CommonResult;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
@@ -27,16 +28,11 @@
        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);
        CommonResult<Map<String, Object>> mapCommonResult = httpClientDemo.queryPointsRealValue();
        System.out.println(mapCommonResult.getData());
    }
    @Test