@@ -46,20 +46,23 @@ void testSimpleProperty1() {
46
46
String key = "test.prop.1" ; // test.prop.1 is available for both languages
47
47
this .testHelper ( "Test property 1" , LANG_DEF , key );
48
48
this .testHelper ( "Proprietà test 1" , LANG_ALT [0 ], key );
49
+ Assertions .assertTrue ( Boolean .TRUE );
49
50
}
50
51
51
52
@ Test
52
53
void testSimpleProperty2 () {
53
54
String key = "test.prop.2" ; // test.prop.2 is available only for default language
54
55
this .testHelper ( "Test property 2" , LANG_DEF , key );
55
56
this .testHelper ( "Test property 2" , LANG_ALT [0 ], key );
57
+ Assertions .assertTrue ( Boolean .TRUE );
56
58
}
57
59
58
60
@ Test
59
61
void testSimpleProperty3 () {
60
62
String key = "test.prop.3" ; // test.prop.3 is available only for default language
61
63
this .testHelper ( null , LANG_DEF , key );
62
64
this .testHelper ( "Proprietà test 3" , LANG_ALT [0 ], key );
65
+ Assertions .assertTrue ( Boolean .TRUE );
63
66
}
64
67
65
68
@ Test
@@ -70,6 +73,7 @@ void testComplexProperty1() {
70
73
LANG_DEF , key , Integer .valueOf ( 3 ), ParamI18N .newParamI18N ( keyParam ) );
71
74
this .testHelper ( "Proprietà complessa test 1 -> parametro semplice : 3 e parametro i18n : (valore ParamI18N)" ,
72
75
LANG_ALT [0 ], key , Integer .valueOf ( 3 ), ParamI18N .newParamI18N ( keyParam ) );
76
+ Assertions .assertTrue ( Boolean .TRUE );
73
77
}
74
78
75
79
@ Test
@@ -80,6 +84,7 @@ void testComplexProperty1Alt() {
80
84
LANG_DEF , key , Integer .valueOf ( 3 ), ParamI18N .newParamI18N ( keyParam , this .helperParam ) );
81
85
this .testHelper ( "Proprietà complessa test 1 -> parametro semplice : 3 e parametro i18n : (valore ParamI18N bundle alternativo)" ,
82
86
LANG_ALT [0 ], key , Integer .valueOf ( 3 ), ParamI18N .newParamI18N ( keyParam , this .helperParam ) );
87
+ Assertions .assertTrue ( Boolean .TRUE );
83
88
}
84
89
85
90
}
0 commit comments