1 #include "yobaperl/test.hpp" 10 _perl.
use(
"Test::More");
13 _perl.
eval(
" plan(tests => " + std::to_string(planned_tests) +
") ");
24 bool Test::ok(
bool cond, std::string test_name)
34 Test & Test::pass(std::string test_name)
36 _perl.
eval(
" pass('" + test_name +
"')");
40 Test & Test::fail(std::string test_name)
42 _perl.
eval(
" fail('" + test_name +
"')");
46 IV Test::doneTesting()
49 return _perl.
eval<
Scalar>(
" done_testing() ").toIV();
Perl & use(const std::string &name)
Import a module.
Test(Perl &perl, int planned_tests=0)
Constructor.
ReturnT eval(const std::string &code)
Evaluate string in generic context.