diff options
| author | Vasile Vilvoiu <vasi@vilvoiu.ro> | 2021-07-21 18:43:02 +0300 |
|---|---|---|
| committer | Vasile Vilvoiu <vasi@vilvoiu.ro> | 2021-07-21 18:43:02 +0300 |
| commit | a7c430fa81c9e22dbce74869a0a27304da78855b (patch) | |
| tree | 8a9f91f64131f404f61ba33bd92082996ca13c1c /test/test.cpp | |
| parent | 270dfd60cde3a7b65a2654eef0f299f32ca704c4 (diff) | |
Implement unit tests.
ColorMap, FFT, InputParser, InputReader, ValueMap, WindowFunction.
Closes #11.
Diffstat (limited to 'test/test.cpp')
| -rw-r--r-- | test/test.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
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 <vasi@vilvoiu.ro> + * + * 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 |
