1 #ifndef YOBAPERL_TEST_HPP 2 #define YOBAPERL_TEST_HPP 4 #include "yobaperl/common.hpp" 5 #include "yobaperl/perl.hpp" 25 Test(
Perl & perl,
int planned_tests = 0);
37 bool ok(
bool cond, std::string test_name =
"");
39 template<
class A,
class B>
40 bool is(
const A & a,
const B & b, std::string test_name =
"");
42 template<
class A,
class B>
43 bool isnt(
const A & a,
const B & b, std::string test_name =
"");
45 Test & pass(std::string test_name =
"");
47 Test & fail(std::string test_name =
"");
56 bool _done_testing =
false;
59 #include "yobaperl/test.tpp" 65 #endif // YOBAPERL_TEST_HPP
Test(Perl &perl, int planned_tests=0)
Constructor.