* @throws IOException
* @throws SOAPException
*/
@Test
public void testTestAccount() throws IOException, SOAPException {
LanguageIdentifierClientHTTP testClient = new LanguageIdentifierClientHTTP(
new URL(CELI_LANGID_SERVICE_URL), null,5);
try {
Assert.assertNotNull(testClient.guessQueryLanguage("This is a dummy request"));
} catch (IOException e) {
RemoteServiceHelper.checkServiceUnavailable(e);
}
}