Files
daggy/tests/main.cpp
2021-06-02 10:38:57 -03:00

14 lines
224 B
C++

#include <iostream>
#include "daggy/DAG.hpp"
#define CATCH_CONFIG_MAIN
#include "catch.hpp"
TEST_CASE("Sanity tests", "[sanity]") {
REQUIRE(1 == 1);
}
// compile and run
// g++ -std=c++17 -o test test.cpp && ./test