Package com.github.restdriver.clientdriver

Examples of com.github.restdriver.clientdriver.ClientDriverResponse.within()


        final ClientDriverResponse response = giveResponse("", null);
       
        // When
        driver.addExpectation(
                onRequestTo("/path"),
                response.within(1, TimeUnit.MILLISECONDS));
       
        Thread.sleep(5);
       
        // Then
        assertThat(response.hasNotExpired(), is(false));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.