Search in sources :

Example 51 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)

Example 52 with ArrayType

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

the class TypeFacadeTest method testToString.

@Test
public void testToString() {
    IType typeFacade = null;
    ClassType classType = new ClassType();
    typeFacade = FACADE_FACTORY.createType(classType);
    Assert.assertEquals(TypeFacadeTest.class.getName(), typeFacade.toString(TypeFacadeTest.class));
    ArrayType arrayType = new ArrayType(null, "foo", "bar", String.class);
    typeFacade = FACADE_FACTORY.createType(arrayType);
    Assert.assertNull(typeFacade.toString(new String[] { "foo", "bar" }));
}
Also used : ArrayType(org.hibernate.type.ArrayType) ClassType(org.hibernate.type.ClassType) IType(org.jboss.tools.hibernate.runtime.spi.IType) Test(org.junit.Test)

Example 53 with ArrayType

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

the class TypeFacadeTest method testGetRole.

@Test
public void testGetRole() {
    IType typeFacade = null;
    ClassType classType = new ClassType();
    typeFacade = FACADE_FACTORY.createType(classType);
    Assert.assertNull(typeFacade.getRole());
    ArrayType arrayType = new ArrayType(null, "foo", null, String.class);
    typeFacade = FACADE_FACTORY.createType(arrayType);
    Assert.assertEquals("foo", typeFacade.getRole());
}
Also used : ArrayType(org.hibernate.type.ArrayType) ClassType(org.hibernate.type.ClassType) IType(org.jboss.tools.hibernate.runtime.spi.IType) Test(org.junit.Test)

Example 54 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)

Example 55 with ArrayType

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

the class TypeFacadeTest method testToString.

@Test
public void testToString() {
    IType typeFacade = null;
    ClassType classType = new ClassType();
    typeFacade = FACADE_FACTORY.createType(classType);
    Assert.assertEquals(TypeFacadeTest.class.getName(), typeFacade.toString(TypeFacadeTest.class));
    ArrayType arrayType = new ArrayType(null, "foo", "bar", String.class);
    typeFacade = FACADE_FACTORY.createType(arrayType);
    Assert.assertNull(typeFacade.toString(new String[] { "foo", "bar" }));
}
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