h.check(!type3.isPrimitiveArray(), "Wrapped not masked false check");
ArrayType type4 = new ArrayType(1, SimpleType.INTEGER);
h.check(!type4.isPrimitiveArray(), "Normal wrapped false check");
ArrayType type5 = new ArrayType(1, SimpleType.STRING);
h.check(!type5.isPrimitiveArray(), "String false check");
CompositeType ctype = new CompositeType("Test","Test",new String[]{"name"},
new String[]{"Name"},
new OpenType[] { SimpleType.STRING});
ArrayType type6 = new ArrayType(1, ctype);
h.check(!type6.isPrimitiveArray(), "Composite type false check");
TabularType ttype = new TabularType("Test","Test",ctype,new String[]{"name"});