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