use of alma.ACSErrTypeCommon.CouldntPerformActionEx in project ACS by ACS-Community.
the class OtherComponentClient method testFindDummyComponentsByType.
public void testFindDummyComponentsByType() throws Exception {
String[] curls = null;
try {
stringSeqHolder curlRet = new stringSeqHolder();
m_contSrvTesterComp.testFindDummyComponentsByType(curlRet);
curls = curlRet.value;
} catch (CouldntPerformActionEx ex) {
throw AcsJCouldntPerformActionEx.fromCouldntPerformActionEx(ex);
}
assertNotNull(curls);
assertEquals(2, curls.length);
assertEquals("DefaultDummyComp", curls[0]);
}
Aggregations