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