// This is a simple test of an ImR using the corba interfaces #include "testC.h" #include "ace/SString.h" #include "ace/Log_Msg.h" #include "ace/OS_NS_stdio.h" #include #include #define assertTrue(CONDITION) \ if (!(CONDITION)) { \ ACE_CString str ("Error : "#CONDITION" :"); \ char line[32]; \ ACE_OS::sprintf (line, "%d", __LINE__); \ throw std::runtime_error (str.c_str ()); \ } using namespace CORBA; int ACE_TMAIN(int argc, ACE_TCHAR *argv[]) { try { ORB_var orb = ORB_init (argc, argv); Object_var obj = orb->resolve_initial_references ("Test"); test_var test = test::_narrow (obj.in ()); assertTrue (!is_nil (test.in ())); Long n = test->get (); Long m = test->get (); assertTrue (m == (n + 1)); ACE_DEBUG ((LM_DEBUG, "All tests ran successfully.\n")); return 0; } catch (const CORBA::Exception& e) { e._tao_print_exception ("test:"); } return 1; }