blob: ee51d2fa1f000f583e24ac419f257df589a4292f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
// $Id$
//============================================================================
//
// = FILENAME
// Collocation_Test.h
//
// = DESCRIPTION
// Server class to perform testing of TAO's collocation mechanism.
//
// = AUTHOR
// Nanbor Wang
//
//=============================================================================
#if !defined (TAO_COLLOCATION_TEST_H)
#define TAO_COLLOCATION_TEST_H
#include "Diamond_i.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class Collocation_Test
{
public:
Collocation_Test (void);
void shutdown (TAO_ENV_SINGLE_ARG_DECL);
int init (int argc, char *argv[] TAO_ENV_ARG_DECL_NOT_USED);
// Initializing the Collocation_Test object.
int parse_args (int argc, char *argv[]);
// Parse the test specific arguments.
int test_narrow (TAO_ENV_SINGLE_ARG_DECL_NOT_USED);
// This test narrow an object reference to its base class and see
// if it works correctly.
int run (TAO_ENV_SINGLE_ARG_DECL_NOT_USED);
// Run the test.
private:
CORBA::ORB_var orb_;
PortableServer::POA_var root_poa_;
PortableServer::POAManager_var poa_manager_;
CORBA::Object_var diamond_obj_;
// Our basic test object.
Top_i top_servant_;
Left_i left_servant_;
Right_i right_servant_;
Buttom_i diamond_servant_;
// A collection of servant for basic narrowing test.
};
#endif /* TAO_COLLOCATION_TEST_H */
|