blob: 66b3d8fa75af7c7b9867c5f926f6e1243e400d02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "app.hpp"
namespace floormat {
namespace {
// tests go here
void test_foo() {}
} // namespace
void test_app::zzz_test_misc()
{
test_foo();
}
} // namespace floormat
|