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