More tests update
[ACE_TAO.git] / TAO / tests / DynAny_Test / test_dynarray.h
blob9796ce4e693ccd0016eac5e7456b412cdc8f7a24
1 //=============================================================================
2 /**
3 * @file test_dynarray.h
5 * Header file for class to test DynArray.
7 * @author Jeff Parsons <parsons@cs.wustl.edu>
8 */
9 //=============================================================================
12 #if !defined (TEST_DYNARRAY_H)
13 #define TEST_DYNARRAY_H
15 #include "tao/ORB.h"
17 class Test_DynArray
19 public:
20 Test_DynArray (CORBA::ORB_var orb, int debug);
21 ~Test_DynArray (void);
23 const char* test_name (void) const;
25 int run_test (void);
27 private:
28 CORBA::ORB_var orb_;
29 char* test_name_;
30 CORBA::ULong error_count_;
31 int debug_;
34 #endif /* TEST_DYNARRAY_H */