We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e864a7 commit 74b7f82Copy full SHA for 74b7f82
1 file changed
test/test.hpp
@@ -24,6 +24,10 @@
24
#include <filesystem>
25
#include <bitcoin/server.hpp>
26
27
+#define REQUIRE_NO_THROW_AND_TRUE(expression) \
28
+ BOOST_REQUIRE_NO_THROW(expression); \
29
+ BOOST_REQUIRE(expression)
30
+
31
#define TEST_NAME \
32
boost::unit_test::framework::current_test_case().p_name.get()
33
#define SUITE_NAME \
0 commit comments