assertThat(voice.locale.getVariant(), is(data.variant)); | assertThat(voice.locale.getVariant(), is(data.variant)); | ||||
assertThat(voice.toString(), is(data.name)); | assertThat(voice.toString(), is(data.name)); | ||||
} | } | ||||
catch (Exception e) | |||||
catch (AssertionError e) | |||||
{ | { | ||||
throw new VoiceData.Exception(data, e); | throw new VoiceData.Exception(data, e); | ||||
} | } |
assertThat(mEngine.getLanguage().getCountry(), is("")); | assertThat(mEngine.getLanguage().getCountry(), is("")); | ||||
assertThat(mEngine.getLanguage().getVariant(), is("")); | assertThat(mEngine.getLanguage().getVariant(), is("")); | ||||
} | } | ||||
catch (Exception e) | |||||
catch (AssertionError e) | |||||
{ | { | ||||
throw new VoiceData.Exception(data, e); | throw new VoiceData.Exception(data, e); | ||||
} | } |
{ | { | ||||
private static final long serialVersionUID = 1L; | private static final long serialVersionUID = 1L; | ||||
public Exception(Voice voice, java.lang.Exception context) | |||||
public Exception(Voice voice, AssertionError context) | |||||
{ | { | ||||
super("Voice \"" + voice.name + "\" -- " + context); | super("Voice \"" + voice.name + "\" -- " + context); | ||||
} | } |