2 //=============================================================================
6 * Tests bounded long sequences
8 * @author Aniruddha Gokhale
10 //=============================================================================
13 #ifndef PARAM_TEST_BOUNDED_LONG_SEQUENCE_H
14 #define PARAM_TEST_BOUNDED_LONG_SEQUENCE_H
16 #include "param_testC.h"
18 // =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
19 // test bounded sequences of longs
20 // =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
22 class Test_Bounded_Long_Sequence
26 Test_Bounded_Long_Sequence (void);
29 ~Test_Bounded_Long_Sequence (void);
32 int run_sii_test (Param_Test_ptr objref
);
34 /// return operation name
35 const char *opname (void) const;
37 /// set values for parameters
38 int init_parameters (Param_Test_ptr objref
);
40 /// reset values for CORBA
41 int reset_parameters (void);
43 /// check if results are valid
44 CORBA::Boolean
check_validity (void);
46 /// check if results are valid. This is used for DII results
47 CORBA::Boolean
check_validity (CORBA::Request_ptr req
);
49 /// print all the values
50 void print_values (void);
52 /// invoke DII request with appropriate exception handling.
53 void dii_req_invoke (CORBA::Request
*);
60 Param_Test::Bounded_Long_Seq_var in_
;
63 Param_Test::Bounded_Long_Seq_var inout_
;
66 Param_Test::Bounded_Long_Seq_var out_
;
69 Param_Test::Bounded_Long_Seq_var ret_
;
72 #endif /* PARAM_TEST_BOUNDED_LONG_SEQUENCE_H */