Typo in test name
This commit is contained in:
parent
ef2092e500
commit
865f41b71f
|
@ -62,11 +62,10 @@ class I18nBaseTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@DisplayName("Test pluralization works without initializing Locale.")
|
@DisplayName("Test pluralization works with initializing Locale.")
|
||||||
void testFormatMessagePluralWithInitLocale() {
|
void testFormatMessagePluralWithInitLocale() {
|
||||||
I18nTestClass testClass = new I18nTestClass();
|
I18nTestClass testClass = new I18nTestClass();
|
||||||
//ResourceBundle loadedBundle = ResourceBundle.getBundle("Messages", Locale.GERMAN);
|
|
||||||
|
|
||||||
testClass.setLocale(Locale.GERMAN);
|
testClass.setLocale(Locale.GERMAN);
|
||||||
//Answer value muss vom Typ {0} sein.
|
//Answer value muss vom Typ {0} sein.
|
||||||
String resultOne = testClass.formatMessagePL(1, I18nConstants.QUESTIONNAIRE_QR_ITEM_WRONGTYPE_PLURAL);
|
String resultOne = testClass.formatMessagePL(1, I18nConstants.QUESTIONNAIRE_QR_ITEM_WRONGTYPE_PLURAL);
|
||||||
|
|
Loading…
Reference in New Issue