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.

11 lines
239 B

  1. #include <iostream>
  2. #include "gtest/gtest.h"
  3. int main(int argc, char** argv) {
  4. std::cout << "Hello, World." << std::endl;
  5. std::cout << "MRMC Testing" << std::endl;
  6. testing::InitGoogleTest(&argc, argv);
  7. return RUN_ALL_TESTS();
  8. }