Search in sources :

Example 56 with ArrayType

use of org.hibernate.type.ArrayType in project jbosstools-hibernate by jbosstools.

the class TypeFacadeTest method testGetReturnedClass.

@Test
public void testGetReturnedClass() {
    IType typeFacade = null;
    ClassType classType = new ClassType();
    typeFacade = FACADE_FACTORY.createType(classType);
    Assert.assertEquals(Class.class, typeFacade.getReturnedClass());
    ArrayType arrayType = new ArrayType(null, null, null, String.class);
    typeFacade = FACADE_FACTORY.createType(arrayType);
    Assert.assertEquals(String[].class, typeFacade.getReturnedClass());
}
Also used : ArrayType(org.hibernate.type.ArrayType) ClassType(org.hibernate.type.ClassType) IType(org.jboss.tools.hibernate.runtime.spi.IType) Test(org.junit.Test)

Aggregations

ArrayType (org.hibernate.type.ArrayType)56 ClassType (org.hibernate.type.ClassType)56 IType (org.jboss.tools.hibernate.runtime.spi.IType)56 Test (org.junit.Test)56 BagType (org.hibernate.type.BagType)8