*/
@Test(expected=IOException.class)
public void testNonExistentAccountAuthentification() throws IOException, SOAPException {
LanguageIdentifierClientHTTP testClient = new LanguageIdentifierClientHTTP(
new URL(CELI_LANGID_SERVICE_URL), "nonexistent:useraccount",5);
testClient.guessQueryLanguage("This is a dummy request");
}
/**
* Also illegal formatted user account are expected to throw a IOException
* with a HTTP status code 4** (Bad Request)
*