File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/test/java/org/javawebstack/orm/test Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 88import org .javawebstack .orm .exception .ORMConfigurationException ;
99import org .junit .jupiter .api .Test ;
1010
11- import javax .swing .text .TabSet ;
1211import java .sql .Timestamp ;
1312import java .time .Instant ;
1413
@@ -41,6 +40,8 @@ public void testFields() throws ORMConfigurationException {
4140 model .exampleBoolean = true ;
4241
4342 model .timestampTest = timestamp ;
43+
44+ model .exampleCharPrimitive = 'C' ;
4445 model .save ();
4546
4647 int id = model .id ;
@@ -112,6 +113,9 @@ public static class ExampleModel extends Model {
112113 @ Column
113114 public Timestamp timestampTest ;
114115
116+ @ Column
117+ public char exampleCharPrimitive ;
118+
115119 public enum Type {
116120 ADMIN , USER , GUEST
117121 }
You can’t perform that action at this time.
0 commit comments