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 279B

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