| 5 | #include <string> |
| 6 | |
| 7 | std::string runIpV4LoopbackTests() |
| 8 | { |
| 9 | #if defined(SFML_RUN_LOOPBACK_TESTS) && defined(SFML_RUN_IPV4_LINK_TESTS) |
| 10 | return ""; |
| 11 | #else |
| 12 | // https://github.com/catchorg/Catch2/blob/devel/docs/test-cases-and-sections.md#special-tags |
| 13 | // This tag tells Catch2 to not run a given TEST_CASE |
| 14 | return "[.loopbackv4]"; |
| 15 | #endif |
| 16 | } |
| 17 | |
| 18 | std::string runIpV4LinkTests() |
| 19 | { |
no outgoing calls
no test coverage detected