SFML/test/TestUtilities/GraphicsUtil.hpp

23 lines
498 B
C++
Raw Normal View History

// Header for SFML unit tests.
//
2021-12-24 21:31:27 +08:00
// For a new graphics 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.
#ifndef SFML_TESTUTILITIES_GRAPHICS_HPP
#define SFML_TESTUTILITIES_GRAPHICS_HPP
2018-08-20 15:51:42 +08:00
#include "WindowUtil.hpp"
2021-12-24 21:31:27 +08:00
namespace doctest
{
2021-12-24 21:31:27 +08:00
class String;
}
2021-12-24 21:31:27 +08:00
namespace sf
{
2021-12-24 21:31:27 +08:00
class Color;
doctest::String toString(const Color& color);
}
#endif // SFML_TESTUTILITIES_GRAPHICS_HPP