Streamline test names and locations

This commit is contained in:
Roland Bock
2021-10-11 10:15:16 +02:00
parent 4a8c941916
commit 8572c821aa
16 changed files with 50 additions and 50 deletions

15
tests/scripts/sample.cpp Normal file
View File

@@ -0,0 +1,15 @@
#include <sample.h>
int main()
{
test::TabFoo tab_foo;
tab_foo.delta = "delta";
tab_foo.Epsilon = 42;
tab_foo.omega = 3.14;
test::TabBar tab_bar;
tab_bar.alpha = 42;
tab_bar.beta = "beta";
tab_bar.gamma = true;
tab_bar.delta = 42;
}