You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
602 B

  1. #include <iostream>
  2. #include "gtest/gtest.h"
  3. #include <pantheios/pantheios.hpp>
  4. #include <pantheios/backends/bec.file.h>
  5. #include <pantheios/frontends/fe.simple.h>
  6. PANTHEIOS_EXTERN_C PAN_CHAR_T const PANTHEIOS_FE_PROCESS_IDENTITY[] = "mrmc-cpp-tests";
  7. int main(int argc, char** argv) {
  8. // Logging init
  9. pantheios_be_file_setFilePath("log.tests.all");
  10. pantheios::log_INFORMATIONAL("MRMC-Cpp Test Suite started.");
  11. pantheios_fe_simple_setSeverityCeiling(PANTHEIOS_SEV_DEBUG);
  12. std::cout << "MRMC Testing Suite" << std::endl;
  13. testing::InitGoogleTest(&argc, argv);
  14. return RUN_ALL_TESTS();
  15. }