SFML/test/TestUtilities/GraphicsUtil.hpp
2022-01-20 07:39:19 +01:00

23 lines
644 B
C++

// Header for SFML unit tests.
//
// For a new graphics module test case, include this header.
// 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
#include "WindowUtil.hpp"
namespace sf
{
class BlendMode;
class Color;
class Transform;
std::ostream& operator <<(std::ostream& os, const BlendMode& blendMode);
std::ostream& operator <<(std::ostream& os, const Color& color);
std::ostream& operator <<(std::ostream& os, const Transform& transform);
}
#endif // SFML_TESTUTILITIES_GRAPHICS_HPP