SFML/test/TestUtilities/WindowUtil.hpp
Chris Thrasher fd3526f742 Use <> for test utilities includes
SFML convention is to only use "" includes when the header is in
the same directory as the file including it. Because these test
util headers are in a separate directory, it makes more sense to
include them via <>.
2022-06-27 00:22:16 +02:00

20 lines
500 B
C++

// Header for SFML unit tests.
//
// For a new window 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_WINDOW_HPP
#define SFML_TESTUTILITIES_WINDOW_HPP
#include <SystemUtil.hpp>
// String conversions for doctest framework
namespace sf
{
class VideoMode;
std::ostream& operator <<(std::ostream& os, const sf::VideoMode& videoMode);
}
#endif // SFML_TESTUTILITIES_WINDOW_HPP