]> rtime.felk.cvut.cz Git - wvtest.git/blob - cpp/t/wvtest.t.cc
wvtestrun: Do not use colors on dumb terminals
[wvtest.git] / cpp / t / wvtest.t.cc
1 #include "wvtest.h"
2
3 WVTEST_MAIN("wvtest tests")
4 {
5     WVPASS(1);
6     WVPASSEQ(1, 1);
7     WVPASSNE(1, 2);
8     WVPASSEQ(1, 1);
9     WVPASSLT(1, 2);
10
11     WVPASSEQ("hello", "hello");
12     WVPASSNE("hello", "hello2");
13
14     WVPASSEQ(std::string("hello"), std::string("hello"));
15     WVPASSNE(std::string("hello"), std::string("hello2"));
16 }