mirror of
https://github.com/moparisthebest/k-9
synced 2025-01-09 20:58:07 -05:00
42 lines
1.1 KiB
Java
42 lines
1.1 KiB
Java
package com.fsck.k9;
|
|
|
|
import com.fsck.k9.activity.K9Activity;
|
|
import com.fsck.k9.helper.DateFormatter;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.Resources;
|
|
import android.test.AndroidTestCase;
|
|
|
|
public class TranslationTest extends AndroidTestCase {
|
|
public void testDateFormats() {
|
|
forAllLanguages(new LanguageSpecific() {
|
|
@Override
|
|
public void runWithLanguage(Context context, String language) {
|
|
Resources res = context.getResources();
|
|
String dateFormatCommon = res.getString(R.string.date_format_common);
|
|
try {
|
|
DateFormatter.getDateFormat(mContext, dateFormatCommon);
|
|
} catch (Exception e) {
|
|
fail("Invalid date format string \"" + dateFormatCommon +
|
|
"\" for language \"" + language + "\"");
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
private void forAllLanguages(LanguageSpecific action) {
|
|
Resources res = mContext.getResources();
|
|
String[] languages = res.getStringArray(R.array.supported_languages);
|
|
|
|
for (String lang : languages) {
|
|
K9Activity.setLanguage(mContext, lang);
|
|
|
|
action.runWithLanguage(mContext, lang);
|
|
}
|
|
}
|
|
|
|
interface LanguageSpecific {
|
|
void runWithLanguage(Context context, String language);
|
|
}
|
|
}
|