Add another Japanese test

This commit is contained in:
wallace11 2021-07-29 01:13:22 +03:00 committed by GitHub
parent 119a4ffdc9
commit 1095a7d56f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -166,6 +166,17 @@ class DateFindSpec extends FunSuite {
)
)
)
assertEquals(
DateFind
.findDates("年月日2021年7月21日", Language.Japanese)
.toVector,
Vector(
NerDateLabel(
LocalDate.of(2021, 7, 21),
NerLabel("2021年7月21", NerTag.Date, 22, 31)
)
)
)
}
}