mirror of
https://github.com/UltraCoderRU/telebotxx.git
synced 2026-01-28 20:25:12 +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);
|
|
}
|