Files
clang-uml/tests/test_example.cpp
2021-02-14 23:50:35 +01:00

12 lines
238 B
C++

#define CATCH_CONFIG_MAIN
#include "catch.hpp"
#include <string>
#include <complex>
TEST_CASE("Test add", "[unit-test]"){
// not very good tests, but oh well...
REQUIRE(2+5 == 5);
std::cout << "RUNNING TEST" << std::endl;
}