mirror of
https://github.com/kirirururu/telebotxx.git
synced 2026-06-14 18:30:43 +00:00
10 lines
192 B
C++
10 lines
192 B
C++
#define BOOST_TEST_MODULE AllTests
|
|
#include "TestGlobal.hpp"
|
|
#include <stdexcept>
|
|
|
|
BOOST_AUTO_TEST_CASE(Dummy)
|
|
{
|
|
PRINT_TESTNAME;
|
|
BOOST_REQUIRE(1 == 1);
|
|
BOOST_REQUIRE_THROW(throw 1, int);
|
|
}
|