Added import mapping for Timestamp

This commit is contained in:
Ganesh Subramanian 2014-08-21 12:11:19 +05:30
parent 6087181634
commit 3ad1ecf153

View File

@ -123,7 +123,7 @@ class BasicJavaGeneratorTest extends FlatSpec with ShouldMatchers {
it should "honor the import mapping" in {
config.importMapping("Date") should be ("java.util.Date")
config.importMapping("DateTime") should be ("org.joda.time.*")
config.importMapping("TimeStamp") should be ("java.sql.Timestamp")
config.importMapping("Timestamp") should be ("java.sql.Timestamp")
config.importMapping("Set") should be ("java.util.*")
}