1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

tests: readd missing graph test suite

This commit is contained in:
Steffen Vogel 2018-01-31 15:12:36 +01:00
parent b0f4577dd3
commit 2a03d19d53

View file

@ -4,6 +4,17 @@
#include <villas/directed_graph.hpp>
#include <villas/log.hpp>
static void init_graph()
{
spdlog::set_pattern("[%T] [%l] [%n] %v");
spdlog::set_level(spdlog::level::debug);
}
TestSuite(graph,
.init = init_graph,
.description = "Graph library"
);
Test(graph, basic, .description = "DirectedGraph")
{
auto logger = loggerGetOrCreate("unittest:basic");