use of org.apache.syncope.common.lib.to.RelationshipTypeTO in project syncope by apache.
the class RelationshipTypeITCase method read.
@Test
public void read() {
RelationshipTypeTO otherType = relationshipTypeService.read("inclusion");
assertNotNull(otherType);
assertEquals("inclusion", otherType.getKey());
}
Aggregations