blob: 83335a4d082db0cb03c88bcdbe89b36de77aef8a [file] [log] [blame]
#include "catch.hpp"
#include "util.hxx"
TEST_CASE("String format check hello world", "[.]")
{
REQUIRE(string_format("hello %s", "world") == "hello world");
}
TEST_CASE("String format check hello cruel world", "[.]")
{
REQUIRE(string_format("hello %s %s", "cruel", "world") ==
"hello cruel world");
}
TEST_CASE("String format check hello sweet world", "[.]")
{
REQUIRE(string_format("hello %s %d", "sweet", 1) == "hello sweet 1");
}