SFML/test/TestUtilities/WindowUtil.hpp

29 lines
792 B
C++
Raw Normal View History

// Header for SFML unit tests.
//
// For a new window module test case, include this header.
2021-12-24 21:31:27 +08:00
// This ensures that string conversions are visible and can be used by doctest for debug output.
#ifndef SFML_TESTUTILITIES_WINDOW_HPP
#define SFML_TESTUTILITIES_WINDOW_HPP
2018-08-20 15:51:42 +08:00
#include "SystemUtil.hpp"
#include <SFML/Graphics/Rect.hpp>
2021-12-24 21:31:27 +08:00
// String conversions for doctest framework
namespace sf
{
class VideoMode;
std::ostream& operator <<(std::ostream& os, const sf::VideoMode& videoMode);
template <typename T>
std::ostream& operator <<(std::ostream& os, const sf::Rect<T>& rect)
{
os << "(left=" << rect.left << ", top=" << rect.top << ", width=" << rect.width << ", height=" << rect.height << ")";
return os;
}
}
#endif // SFML_TESTUTILITIES_WINDOW_HPP