mapnik/test/unit/run.cpp
2015-06-15 20:41:46 -07:00

13 lines
237 B
C++

#define CATCH_CONFIG_RUNNER
#include "catch.hpp"
#include "cleanup.hpp" // run_cleanup()
int main (int argc, char* const argv[])
{
int result = Catch::Session().run( argc, argv );
testing::run_cleanup();
return result;
}