This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RunWith( HttpJUnitRunner.class ) | |
public class RestfusePollTest { | |
@Rule | |
public Destination destination = new Destination( "http://restfuse.com" ); | |
@Context | |
private Response response; | |
@Context |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RunWith( HttpJUnitRunner.class ) | |
public class RestfuseTest { | |
@Rule | |
public Destination destination = new Destination( "http://restfuse.com" ); | |
@Context | |
private Response response; // will be injected after every request | |
@HttpTest( method = Method.GET, path = "/" ) |
NewerOlder