*/
@Test(expected = IllegalStateException.class)
public void testAddQueryDataIllegalStateException() {
Request r = new Request(config, null, HttpMethod.GET);
r.running = true;
r.addQueryData("key", "value");
}
/**
* Test the setAsynchronous and clearAsynchronous methods for an IllegalStateException.
*/