Currently, there's no way to pass argc / argv to the tests. It would be useful to have these stored in some sort of TestContext type that can be referenced from each test...
McTest(my_test) {
char const* arg = ::testy::test_context().argv[1];
...
}
int main(int argc, char const** argv) {
return ::testy::run_all_tests(argc, argv);
}