本文整理汇总了C++中BOOST_CHECK_THROW函数的典型用法代码示例。如果您正苦于以下问题:C++ BOOST_CHECK_THROW函数的具体用法?C++ BOOST_CHECK_THROW怎么用?C++ BOOST_CHECK_THROW使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了BOOST_CHECK_THROW函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: try_lock_twice
void try_lock_twice()
{
boost::fibers::mutex mtx;
boost::unique_lock< boost::fibers::mutex > lk( mtx);
BOOST_CHECK_THROW( lk.try_lock(), boost::lock_error);
}
示例2: testReadUntilFiltered
inline void testReadUntilFiltered(const char* format)
{
TemporaryData data{format};
brion::SpikeReport reportWrite(brion::URI(data.tmpFileName),
brion::MODE_WRITE);
reportWrite.write(data.spikes);
reportWrite.close();
brion::SpikeReport reportRead(brion::URI(data.tmpFileName),
brion::GIDSet{22, 25});
auto spikes = reportRead.readUntil(0.4).get();
BOOST_CHECK_EQUAL(spikes.size(), 1);
BOOST_CHECK(reportRead.getCurrentTime() >= 0.4f);
BOOST_CHECK(spikes.rbegin()->first < 0.4);
BOOST_CHECK_EQUAL(reportRead.getState(), brion::SpikeReport::State::ok);
spikes = reportRead.readUntil(brion::UNDEFINED_TIMESTAMP).get();
BOOST_CHECK_EQUAL(spikes.size(), 1);
BOOST_CHECK_EQUAL(reportRead.getCurrentTime(), brion::UNDEFINED_TIMESTAMP);
BOOST_CHECK_EQUAL(reportRead.getState(), brion::SpikeReport::State::ended);
BOOST_CHECK_THROW(reportRead.read(reportRead.getCurrentTime()),
std::logic_error);
}
示例3: BOOST_FIXTURE_TEST_CASE
BOOST_FIXTURE_TEST_CASE( test_suite_loop5, _2suites_4_cases )
{
tc1->depends_on( s1 );
master->p_default_status.value = ut::test_unit::RS_ENABLED;
BOOST_CHECK_THROW( ut::framework::finalize_setup_phase( master->p_id ),
ut::framework::setup_error );
}
示例4: testInvalidWrite
inline void testInvalidWrite(const char* format)
{
TemporaryData data{format};
brion::SpikeReport reportWrite(brion::URI(data.tmpFileName),
brion::MODE_WRITE);
reportWrite.write(data.spikes);
BOOST_CHECK_THROW(reportWrite.write({{0.0, 0}}), std::logic_error);
BOOST_CHECK_THROW(reportWrite.write(
{{10.0, 0}, {10.0, 1}, {11.0, 0}, {0.5, 1}}),
std::logic_error);
brion::SpikeReport reportRead{brion::URI(data.tmpFileName),
brion::MODE_READ};
BOOST_CHECK_THROW(reportRead.write({{100.0, 0}}), std::runtime_error);
}
示例5: operator
void operator()() const
{
Mutex m;
Lock lock(m);
lock.unlock();
BOOST_CHECK_THROW( lock.unlock(), boost::lock_error );
}
示例6: test_unlock_twice
void test_unlock_twice()
{
boost::fibers::spin::mutex mtx;
boost::unique_lock< boost::fibers::spin::mutex > lk( mtx);
lk.unlock();
BOOST_CHECK_THROW( lk.unlock(), boost::lock_error);
}
示例7: BOOST_AUTO_TEST_CASE_TEMPLATE
BOOST_AUTO_TEST_CASE_TEMPLATE(members, T, float_types) {
vmath::core::Matrix<T, 3> M;
M[0] = vmath::core::Vector<T, 3>(static_cast<T>(1.0), static_cast<T>(2.0), static_cast<T>(3.0));
M[1] = vmath::core::Vector<T, 3>(static_cast<T>(4.0), static_cast<T>(5.0), static_cast<T>(6.0));
M[2] = vmath::core::Vector<T, 3>(static_cast<T>(7.0), static_cast<T>(8.0), static_cast<T>(9.0));
BOOST_CHECK_CLOSE(M[0][0], static_cast<T>(1.0), 1e-4f);
BOOST_CHECK_CLOSE(M[0][1], static_cast<T>(2.0), 1e-4f);
BOOST_CHECK_CLOSE(M[0][2], static_cast<T>(3.0), 1e-4f);
BOOST_CHECK_CLOSE(M[1][0], static_cast<T>(4.0), 1e-4f);
BOOST_CHECK_CLOSE(M[1][1], static_cast<T>(5.0), 1e-4f);
BOOST_CHECK_CLOSE(M[1][2], static_cast<T>(6.0), 1e-4f);
BOOST_CHECK_CLOSE(M[2][0], static_cast<T>(7.0), 1e-4f);
BOOST_CHECK_CLOSE(M[2][1], static_cast<T>(8.0), 1e-4f);
BOOST_CHECK_CLOSE(M[2][2], static_cast<T>(9.0), 1e-4f);
// invalid index
BOOST_CHECK_THROW(M[3], std::out_of_range);
BOOST_CHECK_THROW((M[3] = vmath::core::Vector<T, 3>()), std::out_of_range);
}
示例8: const_test_f
void const_test_f( json::value const & value )
{
BOOST_CHECK(value.has_key("cafe"));
BOOST_CHECK_THROW(value["sam"], std::out_of_range);
BOOST_CHECK_EQUAL(value["cafe"], "open");
BOOST_CHECK_EQUAL(value["bar"][2], 1234.5);
}
示例9: BOOST_CHECK_THROW
void C2STestSocketListener::runTest()
{
C2STestSocketListener testSocketListener;
BOOST_CHECK_THROW( testSocketListener.sendTestMessageThroughSocket() , C2SSocketException );
testSocketListener.startSocketListener();
testSocketListener.sendTestMessageThroughSocket();
testSocketListener.sendTestMessageThroughSocket();
testSocketListener.shutdownSocketListener();
}
示例10: WESNOTH_PARAMETERIZED_TEST_CASE
WESNOTH_PARAMETERIZED_TEST_CASE( test_multi_sendfile, sendfile_param, sendfile_sizes, size )
{
auto_resetter<std::string> path("", game_config::path);
network::set_raw_data_only();
std::string file = create_random_sendfile(size.size_);
network_worker_pool::set_use_system_sendfile(size.system_);
network::connection cl_client1, se_client1;
network::connection cl_client2, se_client2;
network::connection cl_client3, se_client3;
BOOST_CHECK_MESSAGE((cl_client1 = network::connect(LOCALHOST, TEST_PORT)) > 0, "Can't connect to server!");
BOOST_CHECK_MESSAGE((se_client1 = network::accept_connection()) > 0, "Coulnd't accept new connection");
BOOST_CHECK_MESSAGE((cl_client2 = network::connect(LOCALHOST, TEST_PORT)) > 0, "Can't connect to server!");
BOOST_CHECK_MESSAGE((se_client2 = network::accept_connection()) > 0, "Coulnd't accept new connection");
BOOST_CHECK_MESSAGE((cl_client3 = network::connect(LOCALHOST, TEST_PORT)) > 0, "Can't connect to server!");
BOOST_CHECK_MESSAGE((se_client3 = network::accept_connection()) > 0, "Coulnd't accept new connection");
network::send_file(file, cl_client1);
network::send_file(file, cl_client2);
network::send_file(file, cl_client3);
std::vector<char> data;
BOOST_CHECK_PREDICATE(test_utils::one_of<network::connection> , (receive(data,500))(3)(se_client1)(se_client2)(se_client3));
BOOST_CHECK_EQUAL(data.size(), static_cast<size_t>(file_size(file)));
BOOST_CHECK_PREDICATE(test_utils::one_of<network::connection> , (receive(data,500))(3)(se_client1)(se_client2)(se_client3));
BOOST_CHECK_EQUAL(data.size(), static_cast<size_t>(file_size(file)));
BOOST_CHECK_PREDICATE(test_utils::one_of<network::connection> , (receive(data,500))(3)(se_client1)(se_client2)(se_client3));
BOOST_CHECK_EQUAL(data.size(), static_cast<size_t>(file_size(file)));
network::disconnect(cl_client1);
network::disconnect(cl_client2);
network::disconnect(cl_client3);
BOOST_CHECK_THROW(receive(data),network::error);
BOOST_CHECK_THROW(receive(data),network::error);
BOOST_CHECK_THROW(receive(data),network::error);
delete_random_sendfile(file);
}
示例11: All
static void All()
{
static const String FieldName = STR( "coin" );
static const std::pair< uint32_t, uint32_t > FieldPrecision = std::make_pair( 10, 5 );
DatabaseValuedObjectInfosSPtr infos;
BOOST_CHECK_NO_THROW( infos = std::make_shared< CDatabaseValuedObjectInfos >( FieldName ) );
BOOST_CHECK( infos );
BOOST_CHECK( infos->GetName() == FieldName );
BOOST_CHECK( infos->GetType() == EFieldType_NULL );
BOOST_CHECK_THROW( infos->SetType( FieldType ), CDatabaseException );
BOOST_CHECK_THROW( infos->SetType( FieldType, FieldPrecision.first ), CDatabaseException );
BOOST_CHECK_NO_THROW( infos->SetType( FieldType, FieldPrecision ) );
BOOST_CHECK( infos->GetType() == FieldType );
BOOST_CHECK( infos->GetPrecision() == FieldPrecision );
BOOST_CHECK_THROW( infos = std::make_shared< CDatabaseValuedObjectInfos >( FieldName, FieldType ), CDatabaseException );
BOOST_CHECK_THROW( infos = std::make_shared< CDatabaseValuedObjectInfos >( FieldName, FieldType, FieldPrecision.first ), CDatabaseException );
BOOST_CHECK_NO_THROW( infos = std::make_shared< CDatabaseValuedObjectInfos >( FieldName, FieldType, FieldPrecision ) );
BOOST_CHECK( infos->GetType() == FieldType );
BOOST_CHECK( infos->GetPrecision() == FieldPrecision );
}
示例12: checkValidity
void
checkValidity(std::string parameters, bool isCorrect)
{
Name strategyName(Name(AsfStrategy::getStrategyName()).append(parameters));
if (isCorrect) {
BOOST_CHECK_NO_THROW(make_unique<AsfStrategy>(forwarder, strategyName));
}
else {
BOOST_CHECK_THROW(make_unique<AsfStrategy>(forwarder, strategyName), std::invalid_argument);
}
}
示例13: RunCreate
static void RunCreate(const int64_t& num)
{
CheckCreateInt(num);
CScriptNum scriptnum(num);
if (scriptnum.getvch().size() <= CScriptNum::nMaxNumSize)
CheckCreateVch(num);
else
{
BOOST_CHECK_THROW (CheckCreateVch(num), scriptnum_error);
}
}
示例14: BOOST_FIXTURE_TEST_CASE
BOOST_FIXTURE_TEST_CASE(FullName, DataIdentityFixture)
{
// Encoding pipeline
ndn::Data d(ndn::Name("/local/ndn/prefix"));
d.setContentType(tlv::ContentType_Blob);
d.setFreshnessPeriod(time::seconds(10));
d.setContent(Content1, sizeof(Content1));
BOOST_CHECK_THROW(d.getFullName(), Data::Error);
keyChain.sign(d, security::SigningInfo(security::SigningInfo::SIGNER_TYPE_CERT, certName));
Name fullName;
BOOST_REQUIRE_NO_THROW(fullName = d.getFullName());
BOOST_CHECK_EQUAL(d.getName().hasWire(), true);
BOOST_CHECK_EQUAL(fullName.hasWire(), false);
// check if name was properly cached
BOOST_CHECK_EQUAL(fullName.get(-1).value(), d.getFullName().get(-1).value());
// check FullName content
BOOST_REQUIRE_EQUAL(d.getName().size() + 1, fullName.size());
BOOST_CHECK_EQUAL_COLLECTIONS(d.getName().begin(), d.getName().end(),
fullName.begin(), fullName.end() - 1);
BOOST_CHECK_EQUAL(fullName.get(-1).value_size(), 32);
// FullName should be reset after the next line
d.setFreshnessPeriod(time::seconds(100));
BOOST_CHECK_THROW(d.getFullName(), Data::Error);
// Decoding pipeline
d.wireDecode(Block(Data1, sizeof(Data1)));
BOOST_REQUIRE_NO_THROW(fullName = d.getFullName());
BOOST_CHECK_EQUAL(fullName.toUri(),
"/local/ndn/prefix/"
"sha256digest=28bad4b5275bd392dbb670c75cf0b66f13f7942b21e80f55c0e86b374753a548");
}
示例15: ExpectActionFailure
void ExpectActionFailure(Fn && action)
{
CCar clone(car);
BOOST_CHECK_THROW(action(), std::exception);
BOOST_REQUIRE_EQUAL(clone.IsEngineOn(), car.IsEngineOn());
if (clone.IsEngineOn())
{
BOOST_CHECK(clone.GetDirection() == car.GetDirection());
BOOST_CHECK(clone.GetGear() == car.GetGear());
BOOST_CHECK(clone.GetSpeed() == car.GetSpeed());
}
}