Package com.rallydev.rest.matchers

Examples of com.rallydev.rest.matchers.HttpRequestBodyMatcher


    public void shouldPost() throws Exception {
        String url = "/defect/12345";
        String body = "{}";
        doReturn("").when(client).doRequest(any(HttpPost.class));
        client.doPost(url, body);
        verify(client).doRequest(argThat(new HttpRequestBodyMatcher(client.getWsapiUrl() + url, body)));
    }
View Full Code Here


    public void shouldPut() throws Exception {
        String url = "/defect/12345";
        String body = "{}";
        doReturn("").when(client).doRequest(any(HttpPut.class));
        client.doPut(url, body);
        verify(client).doRequest(argThat(new HttpRequestBodyMatcher(client.getWsapiUrl() + url, body)));
    }
View Full Code Here

TOP

Related Classes of com.rallydev.rest.matchers.HttpRequestBodyMatcher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.