forked from saveourtool/osv4k
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- renamed time_line to timeline - added serializers for timeline dates
- Loading branch information
Showing
4 changed files
with
194 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/jvmTest/java/com/saveourtool/osv4k/CosvTestUsingJackson.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
@file:Suppress("LONG_LINE", "TOO_LONG_FUNCTION") | ||
|
||
package com.saveourtool.osv4k | ||
|
||
import kotlin.test.Test | ||
|
||
/** | ||
* Test for COSV using Jackson | ||
*/ | ||
class CosvTestUsingJackson { | ||
/** | ||
* A simple test | ||
*/ | ||
@Test | ||
fun simpleTest() { | ||
OsvSchemaJacksonJavaTestUtil.doEncodeDecodeAndCompare( | ||
CosvTest.cosvExample | ||
) | ||
} | ||
} |