summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/Basic/LifeCycleTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Notify/Basic/LifeCycleTest.h')
-rw-r--r--TAO/orbsvcs/tests/Notify/Basic/LifeCycleTest.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/TAO/orbsvcs/tests/Notify/Basic/LifeCycleTest.h b/TAO/orbsvcs/tests/Notify/Basic/LifeCycleTest.h
deleted file mode 100644
index b00a9008184..00000000000
--- a/TAO/orbsvcs/tests/Notify/Basic/LifeCycleTest.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-// ==========================================================================
-//
-// = FILENAME
-// LifeCycleTest.h
-//
-// = DESCRIPTION
-// Test to check it ec and admin objects are destroyed.
-//
-// = AUTHOR
-// Chanaka Liyanaarachchi <chanaka@ociweb.com>
-//
-// ==========================================================================
-
-#ifndef NOTIFY_LIFECYCLETST_H
-#define NOTIFY_LIFECYCLETST_H
-
-class LifeCycleTest
-{
-public:
- LifeCycleTest (void);
- ~LifeCycleTest (void);
-
- void init (int argc,
- char *argv[]
- ACE_ENV_ARG_DECL);
- void run_test (ACE_ENV_SINGLE_ARG_DECL);
- int parse_args (int argc,
- char *argv[]);
-
-private:
- void create_ec (ACE_ENV_SINGLE_ARG_DECL);
- void create_supplier_admin (ACE_ENV_SINGLE_ARG_DECL);
- void create_consumer_admin (ACE_ENV_SINGLE_ARG_DECL);
- void destroy_ec (ACE_ENV_SINGLE_ARG_DECL);
- void destroy_supplier_admin (ACE_ENV_SINGLE_ARG_DECL);
- void destroy_consumer_admin (ACE_ENV_SINGLE_ARG_DECL);
-
- CosNotifyChannelAdmin::EventChannelFactory_var notify_factory_;
- CosNotifyChannelAdmin::EventChannel_var ec_;
- CosNotifyChannelAdmin::SupplierAdmin_var supplier_admin_;
- CosNotifyChannelAdmin::ConsumerAdmin_var consumer_admin_;
-
- int count_;
- // Number of times to create destroy.
-};
-
-#endif /* NOTIFY_LIFECYCLETST_H */