| | |
| | | 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; |
| | |
| | | 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 |