You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test(kotlin-spring): add tests for Jackson datetime property path
Add tests to verify that:
- Spring Boot 4 generates application.yaml with spring.jackson.datatype.datetime.WRITE_DATES_AS_TIMESTAMPS
- Spring Boot 3 generates application.yaml with spring.jackson.serialization.WRITE_DATES_AS_TIMESTAMPS
Copy file name to clipboardExpand all lines: modules/openapi-generator/src/test/java/org/openapitools/codegen/kotlin/spring/KotlinSpringServerCodegenTest.java
+47Lines changed: 47 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -676,6 +676,53 @@ public void useSpringBoot3() throws Exception {
676
676
);
677
677
}
678
678
679
+
@Test(description = "Spring Boot 4 should use Jackson 3 datetime property path")
0 commit comments