use of org.omg.CORBA.StringHolder in project ACS by ACS-Community.
the class OtherComponentClient method testStateManager.
public void testStateManager() {
StringHolder stateNameHolder = new StringHolder();
boolean ret = m_contSrvTesterComp.testStateManager(stateNameHolder);
assertTrue("test execution successful on the server component", ret);
assertEquals("OPERATIONAL", stateNameHolder.value);
}
Aggregations