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-digicode-keyboard.cpp 214B

1234567891011121314
  1. #include <iostream>
  2. #include <string.h>
  3. #include <gtest/gtest.h>
  4. TEST(None, None)
  5. {
  6. ASSERT_TRUE(true);
  7. }
  8. int main(int argc, char* argv[])
  9. {
  10. ::testing::InitGoogleTest(&argc, argv);
  11. return RUN_ALL_TESTS();
  12. }