/**
* Filters can be specified by annotation - then they will be applied in any
* Warp execution where no other filter was specified.
*/
@Observe(RequestToObserve.class)
public void testFilterSpecifiedByAnnotation() {
Warp
.execute(clientAction)
.verify(serverAssertion);
}
/**
* Assertions can be specified by annotation - all specified assertions
* will be used for all requests.
*/
@Inspect({Inspection1.class, Inspection2.class})
public void testSpecifyAssertionByAnnotation() {
clientAction.action();
}