summaryrefslogtreecommitdiff
path: root/tests/Config_Test.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Config_Test.h')
-rw-r--r--tests/Config_Test.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/tests/Config_Test.h b/tests/Config_Test.h
deleted file mode 100644
index c46d141b21f..00000000000
--- a/tests/Config_Test.h
+++ /dev/null
@@ -1,63 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// tests
-//
-// = FILENAME
-// ConfigTest.h
-//
-// = DESCRIPTION
-// This is a test that makes sure the <import_config_as_strings> of
-// <ACE_Configuration_Heap> class works correctly.
-//
-// = AUTHOR
-// Michael Searles <msearles@base16.com>
-//
-// ============================================================================
-
-#ifndef __CONFIG_TEST_H
-#define __CONFIG_TEST_H
-
-#include "ace/Configuration.h"
-
-const int TEST_MAX_STRING = 256;
-
-class Config_Test
-{
- ACE_Configuration_Heap m_ConfigurationHeap;
-
- int m_nTimeToLive;
- int m_bDelay;
- ACE_TCHAR m_pszDestIPAddress[TEST_MAX_STRING];
- int m_nDestPort;
- int m_nReconnectInterval;
-
- ACE_TCHAR m_pszLogFilePath[TEST_MAX_STRING];
- ACE_TCHAR m_pszTransactionFilePath[TEST_MAX_STRING];
- ACE_TCHAR m_pszHeading[TEST_MAX_STRING];
- int m_nTraceLevel;
- ACE_TCHAR m_pszJustification[TEST_MAX_STRING];
-
-public:
- Config_Test (void) { }
- ~Config_Test (void) { }
- void read_config (void);
-
-private:
- void get_section_string (ACE_Configuration_Section_Key& SectionKey,
- const ACE_TCHAR *pszName,
- ACE_TCHAR *pszVariable,
- int nMaxLength);
- void get_section_integer (ACE_Configuration_Section_Key& SectionKey,
- const ACE_TCHAR *pszName,
- int *nVariable,
- int nMinValue,
- int nMaxValue);
- void get_section_boolean (ACE_Configuration_Section_Key& SectionKey,
- const ACE_TCHAR *pszName,
- int *pVariable);
-};
-
-#endif /* __CONFIG_TEST_H */