Folder restructuring of test projects.

This commit is contained in:
eelke 2018-01-07 09:15:21 +01:00
parent a79357db87
commit c23282cc7a
13 changed files with 33 additions and 35 deletions

13
tests/pglabtests/main.cpp Normal file
View file

@ -0,0 +1,13 @@
#include "tst_CsvWriter.h"
#include "tst_expected.h"
#include "tst_PasswordManager.h"
#include "tst_scopeguard.h"
#include "tst_SqlLexer.h"
#include <gtest/gtest.h>
int main(int argc, char *argv[])
{
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}