use of org.eclipse.persistence.sdo.types.SDODataObjectType in project eclipselink by eclipse-ee4j.
the class SDOHelperTestCases method testUnwrapTypeToSDODataObjectType.
public void testUnwrapTypeToSDODataObjectType() {
Type doType = typeHelper.getType(SDOConstants.SDO_URL, SDOConstants.DATAOBJECT);
assertTrue(SDOHelper.unwrap(doType, SDODataObjectType.class) instanceof SDODataObjectType);
}
Aggregations