package com.izouma.nineth; import com.antfinancial.mychain.baas.tool.restclient.RestClient; import com.antfinancial.mychain.baas.tool.restclient.model.Method; import com.antfinancial.mychain.baas.tool.restclient.response.BaseResp; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; public class AntChainTest extends ApplicationTests { @Autowired private RestClient restClient; @Test public void testQuery() throws Exception { BaseResp baseResp = restClient.chainCall("9df6dffdc211e437986cb42a3b6e600bc37e6fdedfea592812e7b7bb5ccf925b", "", "", Method.QUERYRECEIPT); } }