Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

test-main.cpp 317B

12345678910111213141516
  1. #include <iostream>
  2. #include <string.h>
  3. #include <gtest/gtest.h>
  4. #include <DataAccess/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. }