2018-08-19 07:30:53 +08:00
|
|
|
// Note: No need to increase compile time by including TestUtilities/System.hpp
|
|
|
|
#include <SFML/System/String.hpp>
|
|
|
|
#include <SFML/System/Time.hpp>
|
|
|
|
#include <sstream>
|
|
|
|
|
2021-12-24 21:31:27 +08:00
|
|
|
#include <doctest.h>
|
|
|
|
|
|
|
|
namespace sf
|
2018-08-19 07:30:53 +08:00
|
|
|
{
|
2021-12-24 21:31:27 +08:00
|
|
|
doctest::String toString(const sf::String& string)
|
2018-08-19 07:30:53 +08:00
|
|
|
{
|
2021-12-24 21:31:27 +08:00
|
|
|
return string.toAnsiString().c_str();
|
2018-08-19 07:30:53 +08:00
|
|
|
}
|
|
|
|
|
2021-12-24 21:31:27 +08:00
|
|
|
doctest::String toString(sf::Time time)
|
2018-08-19 07:30:53 +08:00
|
|
|
{
|
|
|
|
std::ostringstream stream;
|
|
|
|
stream << time.asMicroseconds() << "us";
|
2021-12-24 21:31:27 +08:00
|
|
|
return stream.str().c_str();
|
2018-08-19 07:30:53 +08:00
|
|
|
}
|
|
|
|
}
|