Improve unit testing directory structure

Separate Qt tests and gtest tests
Add a basic shadow of the project structure
Add a few simple tests to demonstrate usage
This commit is contained in:
berniev
2023-01-03 14:12:19 +10:00
committed by Chris Hennes
parent 4eca103469
commit 9a05a04dad
14 changed files with 96 additions and 78 deletions

View File

@@ -0,0 +1,8 @@
#include "gtest/gtest.h"
#include <QString>
#include "Base/Builder3D.h"
TEST(Builder, one){
QString ss{};
}