blob: 22e0f2fcf788b83b6db3f12ee72e8af956a34cf5 (
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::test_zzz_misc()
{
test_foo();
}
} // namespace floormat
|