summaryrefslogtreecommitdiff
path: root/ACE/contrib/utility/Test/ExH/Converter/converter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/contrib/utility/Test/ExH/Converter/converter.cpp')
-rw-r--r--ACE/contrib/utility/Test/ExH/Converter/converter.cpp50
1 files changed, 0 insertions, 50 deletions
diff --git a/ACE/contrib/utility/Test/ExH/Converter/converter.cpp b/ACE/contrib/utility/Test/ExH/Converter/converter.cpp
deleted file mode 100644
index 5e2fdc20db6..00000000000
--- a/ACE/contrib/utility/Test/ExH/Converter/converter.cpp
+++ /dev/null
@@ -1,50 +0,0 @@
-// file : Test/ExH/Converter/converter.cpp
-// author : Boris Kolpackov <boris@kolpackov.net>
-// copyright : Copyright (c) 2002-2003 Boris Kolpackov
-// license : http://kolpackov.net/license.html
-
-/* FUZZ: disable check_for_improper_main_declaration */
-
-#include "Utility/ExH/Converter.hpp"
-#include "Utility/ExH/StringStreamConverter.hpp"
-
-#include <string>
-#include <sstream>
-
-using std::string;
-using namespace Utility::ExH;
-
-struct E {};
-
-void postcondition (bool p)
-{
- if (!p) throw E ();
-}
-
-int
-main ()
-{
- try
- {
- // template<T>
- // converter (T const&)
- //
- {
- postcondition (converter ("hello") == string("hello"));
- }
-
- // template<>
- // converter (std::ostringstream const&)
- //
- {
- std::ostringstream ostr;
- ostr << "hello";
- postcondition (converter (ostr) == string("hello"));
- }
- }
- catch (...)
- {
- return -1;
- }
-}
-//$Id$