10 lines
138 B
C++
10 lines
138 B
C++
#include <catch2/catch.hpp>
|
|
#include <iostream>
|
|
|
|
#include "daggy/DAG.hpp"
|
|
|
|
TEST_CASE("General tests", "[general]")
|
|
{
|
|
REQUIRE(1 == 1);
|
|
}
|