Exemplo n.º 1
0
 private TranslationResult(TranslationResultCode code)
 {
     Code = code;
 }
Exemplo n.º 2
0
 private static void AssertTranslation(TranslationResultCode code, string text, string language, TranslationResult result)
 {
     Assert.Equal((code, text, language), (result.Code, result.Text.Replace(",", string.Empty), result.SourceLanguage));
 }