| | |
| | | import org.springframework.boot.test.context.SpringBootTest; |
| | | import org.springframework.test.context.junit4.SpringRunner; |
| | | |
| | | import java.util.Map; |
| | | |
| | | |
| | | @RunWith(SpringRunner.class) |
| | | @SpringBootTest |
| | |
| | | @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() { |
| | |
| | | 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(); |
| | | } |
| | | } |