Minor restructuring for tests, initial work for sync tracks.

This commit is contained in:
Martin Felis
2021-11-16 18:15:56 +01:00
parent 038f07de0a
commit 3e1c150345
12 changed files with 18144 additions and 77 deletions
+5
View File
@@ -0,0 +1,5 @@
//
// Created by martin on 16.11.21.
//
#include "catch.hpp"
+17959
View File
File diff suppressed because it is too large Load Diff
+8
View File
@@ -0,0 +1,8 @@
#define CATCH_CONFIG_RUNNER // This tells Catch to provide a main() - only do this in one cpp file
#include "catch.hpp"
int main (int argc, char* argv[]) {
int result = Catch::Session().run(argc, argv);
return result;
}