PageRenderTime 42ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/test/test.cpp

http://github.com/akrennmair/newsbeuter
C++ | 14 lines | 9 code | 5 blank | 0 comment | 0 complexity | 050a148deb8d2ce7dbc69db5a0cd7e1e MD5 | raw file
  1. #define CATCH_CONFIG_RUNNER
  2. #include "catch.hpp"
  3. #include <logger.h>
  4. int main(int argc, char *argv[])
  5. {
  6. setlocale(LC_CTYPE, "");
  7. srand(static_cast<unsigned int>(std::time(0)));
  8. return Catch::Session().run(argc, argv);
  9. }