Skip to content

Instantly share code, notes, and snippets.

@mentix02
Created May 23, 2020 22:30
Show Gist options
  • Save mentix02/cd7fd2932ce706a610cc82aefa3cd516 to your computer and use it in GitHub Desktop.
Save mentix02/cd7fd2932ce706a610cc82aefa3cd516 to your computer and use it in GitHub Desktop.
Runner generated by ship.py
/*
Generated by ship.py on Sat May 23 15:05:18 2020.
*/
#include "shipyard.hpp"
#include "test_primelib.cpp"
int main(int argc, char* argv[])
{
const auto tests = sy::create_tests({
TESTFUNC(test_n_prime),
TESTFUNC(test_is_prime),
TESTFUNC(test_primes_till),
});
sy::run(tests, true);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment