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

View File

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