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.

test-main.cpp 315B

12345678910111213141516
  1. #include <iostream>
  2. #include <string.h>
  3. #include <gtest/gtest.h>
  4. #include <Business/LibNfc.h>
  5. TEST(None, None)
  6. {
  7. ASSERT_TRUE(true);
  8. }
  9. int main(int argc, char* argv[])
  10. {
  11. std::cout << "LibNfc version: " << LibNfc::getVersion() << std::endl;
  12. ::testing::InitGoogleTest(&argc, argv);
  13. return RUN_ALL_TESTS();
  14. }