summaryrefslogtreecommitdiff
path: root/source/test/programs/cpp_example.cpp
blob: 523186b49cebda12b04d2f188e62e59abca4e203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "../../kit_test/test.h"

TEST("foo") {
  REQUIRE(20 + 22 == 42);
}

TEST("bar") {
  REQUIRE(true);
}

int main(int argc, char **argv) {
  return run_tests(argc, argv);
}