tests: add TODO comments for missing tests

This commit is contained in:
Sébastien Helleu 2014-08-06 07:53:04 +02:00
parent aa8a1cc775
commit 13fc108c6d

View File

@ -528,6 +528,9 @@ TEST(String, Replace)
STRCMP_EQUAL("test xxx def", string_replace("test abc def", "abc", "xxx"));
STRCMP_EQUAL("xxx test xxx def xxx",
string_replace("abc test abc def abc", "abc", "xxx"));
/* TODO: write tests for string_replace_regex */
/* TODO: write tests for string_replace_with_callback */
}
/*