#2737 - Mapping of TimeZone doesn't have enough characters

This commit is contained in:
Rob Bygrave
2022-07-05 09:05:13 +12:00
parent 283e0b66fa
commit 745fbe883e
3 changed files with 35 additions and 2 deletions
@@ -0,0 +1,15 @@
package io.ebeaninternal.server.type;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class ScalarTypeTimeZoneTest {
ScalarTypeTimeZone type = new ScalarTypeTimeZone();
@Test
void getLength() {
assertEquals(32, type.getLength());
}
}