testPing.cpp 181 B

1234567891011
  1. #define CATCH_CONFIG_MAIN
  2. #include <catch2.hpp>
  3. #include "RestfulFunc.h"
  4. TEST_CASE("Test ping protocols implement", "[normal]")
  5. {
  6. REQUIRE(PingTest("55.14.131.137") == 0);
  7. }