Files
contract/test/function/decl_pre_all.cpp
2016-01-27 08:10:48 -08:00

61 lines
1.3 KiB
C++

// Test with preconditions.
#undef BOOST_CONTRACT_TEST_NO_F_PRE
#include "decl.hpp"
#include <boost/detail/lightweight_test.hpp>
#include <sstream>
#include <string>
std::string ok_f(bool failed = false) {
std::ostringstream ok; ok
#if BOOST_CONTRACT_PRECONDITIONS
<< "f::pre" << std::endl // Test no failure here.
#endif
;
if(!failed) ok
#if BOOST_CONTRACT_POSTCONDITIONS
<< "f::old" << std::endl
#endif
<< "f::body" << std::endl
#if BOOST_CONTRACT_POSTCONDITIONS
<< "f::post" << std::endl
#endif
;
return ok.str();
}
int main() {
std::ostringstream ok;
f_pre = true;
out.str("");
f();
ok.str(""); ok
<< ok_f()
;
BOOST_TEST(out.eq(ok.str()));
struct err {};
boost::contract::set_precondition_failure(
[] (boost::contract::from) { throw err(); });
f_pre = false;
out.str("");
try {
f();
#if BOOST_CONTRACT_PRECONDITIONS
BOOST_TEST(false);
} catch(err const&) {
#endif
ok.str(""); ok
<< ok_f(BOOST_CONTRACT_PRECONDITIONS)
;
BOOST_TEST(out.eq(ok.str()));
} catch(...) { BOOST_TEST(false); }
return boost::report_errors();
}