// Note: No need to increase compile time by including TestUtilities/System.hpp #include #include #include #include namespace sf { doctest::String toString(const sf::String& string) { return string.toAnsiString().c_str(); } doctest::String toString(sf::Time time) { std::ostringstream stream; stream << time.asMicroseconds() << "us"; return stream.str().c_str(); } }