summaryrefslogtreecommitdiff
path: root/test/src/TestUtilities/GraphicsUtil.hpp
blob: 2a792e4cca09e775fd4b0133178f21130dbacae2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Header for SFML unit tests.
//
// For a new graphics module test case, include this header and not <catch.hpp> directly.
// This ensures that string conversions are visible and can be used by Catch for debug output.

#ifndef SFML_TESTUTILITIES_GRAPHICS_HPP
#define SFML_TESTUTILITIES_GRAPHICS_HPP

#include "WindowUtil.hpp"

// Forward declarations for non-template types
namespace sf
{
    class Color;
}

// String conversions for Catch framework
namespace Catch
{
    std::string toString(const sf::Color& color);
}

#endif // SFML_TESTUTILITIES_GRAPHICS_HPP