Yoba Perl
test.hpp
1 #ifndef YOBAPERL_TEST_HPP
2 #define YOBAPERL_TEST_HPP
3 
4 #include "yobaperl/common.hpp"
5 #include "yobaperl/perl.hpp"
6 
7 namespace yoba {
8 
9 
10 
15 class Test
16 {
17 public:
18 
19 
20 
25  Test(Perl & perl, int planned_tests = 0);
26 
31  ~Test();
32 
33 
34 
36 
37  bool ok(bool cond, std::string test_name = "");
38 
39  template<class A, class B>
40  bool is(const A & a, const B & b, std::string test_name = "");
41 
42  template<class A, class B>
43  bool isnt(const A & a, const B & b, std::string test_name = "");
44 
45  Test & pass(std::string test_name = "");
46 
47  Test & fail(std::string test_name = "");
48 
49  IV doneTesting();
50 
52 
53 
54 private:
55  Perl & _perl;
56  bool _done_testing = false;
57 };
58 
59 #include "yobaperl/test.tpp"
60 
61 
62 
63 } // namespace yoba
64 
65 #endif // YOBAPERL_TEST_HPP
~Test()
Destructor.
Definition: test.cpp:16
Definition: array.cpp:5
Test::Simple interface.
Definition: test.hpp:15
Test(Perl &perl, int planned_tests=0)
Constructor.
Definition: test.cpp:7
Main class.
Definition: perl.hpp:32