* Test of execute method, of class Speak.
*/
@Test
public void testGetSpeakUrlUk() throws Exception {
String text = "Hello World!";
SpokenDialect language = SpokenDialect.ENGLISH_UNITED_KINGDOM;
String expResult = "http://api.microsofttranslator.com/V2/http.svc/Speak";
String result = Speak.execute(text, language);
assertEquals(true, result.contains(expResult));
}