public void testAbortedMethodExecute() throws IOException {
final GetMethod httpget = new GetMethod("/test/");
try {
httpget.abort();
try {
this.client.executeMethod(httpget);
fail("IllegalStateException must have been thrown");
} catch (IllegalStateException e) {
}