Yoba Perl
test.cpp
1 #include "yobaperl/test.hpp"
2 
3 namespace yoba {
4 
5 
6 
7 Test::Test(Perl & perl, int planned_tests)
8  : _perl(perl)
9 {
10  _perl.use("Test::More");
11 
12  if(planned_tests)
13  _perl.eval(" plan(tests => " + std::to_string(planned_tests) + ") ");
14 }
15 
17 {
18  if(!_done_testing)
19  doneTesting();
20 }
21 
22 
23 
24 bool Test::ok(bool cond, std::string test_name)
25 {
26  if(cond)
27  pass(test_name);
28  else
29  fail(test_name);
30 
31  return cond;
32 }
33 
34 Test & Test::pass(std::string test_name)
35 {
36  _perl.eval(" pass('" + test_name + "')");
37  return *this;
38 }
39 
40 Test & Test::fail(std::string test_name)
41 {
42  _perl.eval(" fail('" + test_name + "')");
43  return *this;
44 }
45 
46 IV Test::doneTesting()
47 {
48  _done_testing = true;
49  return _perl.eval<Scalar>(" done_testing() ").toIV();
50 }
51 
52 
53 
54 } // namespace yoba
~Test()
Destructor.
Definition: test.cpp:16
Definition: array.cpp:5
Test::Simple interface.
Definition: test.hpp:15
Perl & use(const std::string &name)
Import a module.
Definition: perl.cpp:193
Test(Perl &perl, int planned_tests=0)
Constructor.
Definition: test.cpp:7
ReturnT eval(const std::string &code)
Evaluate string in generic context.
Main class.
Definition: perl.hpp:32
Scalar reference
Definition: scalar.hpp:24