assertNotNull(shortType);
assertEquals(SimpleMetaType.SHORT_PRIMITIVE, shortType);
assertTrue(shortType.isPrimitive());
Serializable one = (short) 1;
log.debug("one.class: "+one.getClass());
SimpleValue short1p = SimpleValueSupport.wrap((short)1);
SimpleValue short1p2 = SimpleValueSupport.wrap((short)1);
assertEquals(SimpleMetaType.SHORT_PRIMITIVE, short1p.getMetaType());
SimpleValue short1 = SimpleValueSupport.wrap(one);
assertEquals(SimpleMetaType.SHORT, short1.getMetaType());
assertEquals(short1, short1p);
assertEquals(short1p, short1p2);
SimpleValue short2p = SimpleValueSupport.wrap((short)2);
assertFalse(short1p.equals(short2p));
}