// Header for SFML unit tests. // // For a new window module test case, include this header. // This ensures that string conversions are visible and can be used by Catch2 for debug output. #pragma once #include #include std::string runDisplayTests(); // String conversions for Catch2 namespace sf { class VideoMode; std::ostream& operator<<(std::ostream& os, const VideoMode& videoMode); } // namespace sf