#include <SFML/Window/VideoMode.hpp>
#include <sstream>
namespace Catch
{
std::string toString(const sf::VideoMode& videoMode)
{
std::ostringstream stream;
stream << videoMode.width << "x" << videoMode.height << "x" << videoMode.bitsPerPixel;
return stream.str();
}
}