More tests migrated to core/minimal_test

This commit is contained in:
Andrzej Krzemienski
2015-01-13 23:17:23 +01:00
parent 35eaec5a52
commit a8a6be013f
2 changed files with 55 additions and 110 deletions

View File

@ -1,4 +1,5 @@
// Copyright (C) 2003, Fernando Luis Cacciola Carballal.
// Copyright (C) 2014 Andrzej Krzemienski.
//
// Use, modification, and distribution is subject to the Boost Software
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
@ -8,52 +9,24 @@
//
// You are welcome to contact the author at:
// fernando_cacciola@hotmail.com
//
#include<stdexcept>
#include<string>
#include<sstream>
#define BOOST_ENABLE_ASSERT_HANDLER
#include <sstream>
#include "boost/optional/optional.hpp"
#include "boost/optional/optional_io.hpp"
#include "boost/none.hpp"
#include "boost/test/minimal.hpp"
#ifdef ENABLE_TRACE
#define TRACE(msg) std::cout << msg << std::endl ;
#else
#define TRACE(msg)
#ifdef __BORLANDC__
#pragma hdrstop
#endif
namespace boost {
#include "boost/core/lightweight_test.hpp"
void assertion_failed (char const * expr, char const * func, char const * file, long )
{
using std::string ;
string msg = string("Boost assertion failure for \"")
+ string(expr)
+ string("\" at file \"")
+ string(file)
+ string("\" function \"")
+ string(func)
+ string("\"") ;
TRACE(msg);
throw std::logic_error(msg);
}
}
using namespace std ;
using namespace boost ;
using boost::optional;
using boost::make_optional;
template<class Opt>
void test2( Opt o, Opt buff )
{
stringstream s ;
std::stringstream s ;
const int markv = 123 ;
int mark = 0 ;
@ -61,8 +34,8 @@ void test2( Opt o, Opt buff )
s << o << " " << markv ;
s >> buff >> mark ;
BOOST_CHECK( buff == o ) ;
BOOST_CHECK( mark == markv ) ;
BOOST_TEST( buff == o ) ;
BOOST_TEST( mark == markv ) ;
}
@ -79,20 +52,20 @@ void test( T v, T w )
template <class T>
void subtest_tag_none_reversibility_with_optional(optional<T> ov)
{
stringstream s;
std::stringstream s;
s << boost::none;
s >> ov;
BOOST_CHECK(!ov);
BOOST_TEST(!ov);
}
template <class T>
void subtest_tag_none_equivalence_with_optional()
{
stringstream s, r;
std::stringstream s, r;
optional<T> ov;
s << boost::none;
r << ov;
BOOST_CHECK(s.str() == r.str());
BOOST_TEST_EQ(s.str(), r.str());
}
template <class T>
@ -104,20 +77,12 @@ void test_tag_none(T v)
}
int test_main( int, char* [] )
int main()
{
try
{
test(1,2);
test(string("hello"),string("buffer"));
test_tag_none(10);
test_tag_none(string("text"));
}
catch ( ... )
{
BOOST_ERROR("Unexpected Exception caught!");
}
test(1,2);
test(std::string("hello"), std::string("buffer"));
test_tag_none(10);
test_tag_none(std::string("text"));
return 0;
return boost::report_errors();
}