From a7c430fa81c9e22dbce74869a0a27304da78855b Mon Sep 17 00:00:00 2001 From: Vasile Vilvoiu Date: Wed, 21 Jul 2021 18:43:02 +0300 Subject: Implement unit tests. ColorMap, FFT, InputParser, InputReader, ValueMap, WindowFunction. Closes #11. --- test/test.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/test.cpp (limited to 'test/test.cpp') diff --git a/test/test.cpp b/test/test.cpp new file mode 100644 index 0000000..db573ab --- /dev/null +++ b/test/test.cpp @@ -0,0 +1,13 @@ +/* + * Copyright (c) 2020-2021 Vasile Vilvoiu + * + * specgram is free software; you can redistribute it and/or modify + * it under the terms of the MIT license. See LICENSE for details. + */ +#include "test.hpp" + +int main(int argc, char **argv) +{ + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} \ No newline at end of file -- cgit v1.2.3