use of org.eclipse.persistence.sdo.types.SDOObjectType in project eclipselink by eclipse-ee4j.
the class SDOHelperTestCases method testUnwrapTypeToSDOObjectType.
public void testUnwrapTypeToSDOObjectType() {
Type sdoObjectType = new SDOObjectType("http://www.example.org", "Team", (SDOTypeHelper) typeHelper);
assertTrue(SDOHelper.unwrap(sdoObjectType, SDOObjectType.class) instanceof SDOObjectType);
}
Aggregations