File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
spring-webflux/src/test/java/org/springframework/web/reactive/result/view/script Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 41
41
* @author Sebastien Deleuze
42
42
*/
43
43
@ DisabledForJreRange (min = JAVA_21 , disabledReason = "Kotlin doesn't support Java 21+ yet" )
44
- public class KotlinScriptTemplateTests {
44
+ class KotlinScriptTemplateTests {
45
45
46
46
@ Test
47
- public void renderTemplateWithFrenchLocale () throws Exception {
47
+ void renderTemplateWithFrenchLocale () throws Exception {
48
48
Map <String , Object > model = new HashMap <>();
49
49
model .put ("foo" , "Foo" );
50
50
String url = "org/springframework/web/reactive/result/view/script/kotlin/template.kts" ;
@@ -53,7 +53,7 @@ public void renderTemplateWithFrenchLocale() throws Exception {
53
53
}
54
54
55
55
@ Test
56
- public void renderTemplateWithEnglishLocale () throws Exception {
56
+ void renderTemplateWithEnglishLocale () throws Exception {
57
57
Map <String , Object > model = new HashMap <>();
58
58
model .put ("foo" , "Foo" );
59
59
String url = "org/springframework/web/reactive/result/view/script/kotlin/template.kts" ;
@@ -62,7 +62,7 @@ public void renderTemplateWithEnglishLocale() throws Exception {
62
62
}
63
63
64
64
@ Test
65
- public void renderTemplateWithoutRenderFunction () throws Exception {
65
+ void renderTemplateWithoutRenderFunction () throws Exception {
66
66
Map <String , Object > model = new HashMap <>();
67
67
model .put ("header" , "<html><body>" );
68
68
model .put ("hello" , "Hello" );
You can’t perform that action at this time.
0 commit comments