summaryrefslogtreecommitdiff
path: root/asl/testing/testing.cpp
blob: a2fe1521ce5fac6758bc33e6fc564daf624e10da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "asl/testing/testing.hpp"

int asl::testing::register_test(
    const char* suite_name,
    const char* case_name,
    TestFunction* fn)
{
    return 0;
}

int main(int argc, char* argv[])
{
    return 0;
}