2 //=============================================================================
6 * Tests unbounded string
8 * @author Aniruddha Gokhale
10 //=============================================================================
12 #ifndef PARAM_TEST_UNBOUNDED_STRING_H
13 #define PARAM_TEST_UNBOUNDED_STRING_H
15 #include "param_testC.h"
17 // =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
18 // test unbounded strings
19 // =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
20 class Test_Unbounded_String
24 Test_Unbounded_String (void);
27 ~Test_Unbounded_String (void);
30 int run_sii_test (Param_Test_ptr objref
);
32 /// return operation name
33 const char *opname (void) const;
35 /// set values for parameters
36 int init_parameters (Param_Test_ptr objref
);
38 /// reset values for CORBA
39 int reset_parameters (void);
41 /// check if results are valid
42 CORBA::Boolean
check_validity (void);
44 /// check if results are valid. This is used for DII results
45 CORBA::Boolean
check_validity (CORBA::Request_ptr req
);
47 /// print all the values
48 void print_values (void);
50 /// invoke DII request with appropriate exception handling.
51 void dii_req_invoke (CORBA::Request
*);
70 #endif /* PARAM_TEST_UNBOUNDED_STRING_H */