void run_foundation_tests(void)
{
	run_array_test();
	run_dictionary_test();
	run_enumerator_test();
	run_indexset_test();
	run_value_test();
	run_number_test();
	run_string_test();
}
Example #2
0
File: client.cpp Project: manut/TAO
int
start_tests (Test::Hello_ptr hello, CORBA::ORB_ptr orb)
{
  int result = 0;
  if (test != 4)
    {
      result += run_string_test (hello);
      result += run_big_request_test (hello);
    }
  result += run_big_reply_test (hello);

  result += check_results (orb);
  return result;
}