| 7 | |
| 8 | |
| 9 | std::string runDisplayTests() |
| 10 | { |
| 11 | #ifdef SFML_RUN_DISPLAY_TESTS |
| 12 | return ""; |
| 13 | #else |
| 14 | // https://github.com/catchorg/Catch2/blob/devel/docs/test-cases-and-sections.md#special-tags |
| 15 | // This tag tells Catch2 to not run a given TEST_CASE |
| 16 | return "[.display]"; |
| 17 | #endif |
| 18 | } |
| 19 | |
| 20 | namespace sf |
| 21 | { |
no outgoing calls
no test coverage detected