| 1 | #include <AudioUtil.hpp> |
| 2 | |
| 3 | std::string runAudioDeviceTests() |
| 4 | { |
| 5 | #ifdef SFML_RUN_AUDIO_DEVICE_TESTS |
| 6 | return ""; |
| 7 | #else |
| 8 | // https://github.com/catchorg/Catch2/blob/devel/docs/test-cases-and-sections.md#special-tags |
| 9 | // This tag tells Catch2 to not run a given TEST_CASE |
| 10 | return "[.audio_device]"; |
| 11 | #endif |
| 12 | } |
no outgoing calls
no test coverage detected