SFML/test/TestUtilities/WindowUtil.hpp
2024-09-24 18:42:31 -06:00

20 lines
437 B
C++

// 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 <SystemUtil.hpp>
#include <string>
std::string runDisplayTests();
// String conversions for Catch2
namespace sf
{
class VideoMode;
std::ostream& operator<<(std::ostream& os, const VideoMode& videoMode);
} // namespace sf