From 2a03d19d5345c16b0d1a4da934de15fe74602502 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 31 Jan 2018 15:12:36 +0100 Subject: [PATCH] tests: readd missing graph test suite --- fpga/tests/graph.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/fpga/tests/graph.cpp b/fpga/tests/graph.cpp index 1de58e9b8..b49659e5c 100644 --- a/fpga/tests/graph.cpp +++ b/fpga/tests/graph.cpp @@ -4,6 +4,17 @@ #include #include +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");