From 13fc108c6daabbdc4c3215884cec9e3f54ff7d21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Wed, 6 Aug 2014 07:53:04 +0200 Subject: [PATCH] tests: add TODO comments for missing tests --- tests/unit/core/test-string.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/unit/core/test-string.cpp b/tests/unit/core/test-string.cpp index f8de9d4b5..f3f0c6d8d 100644 --- a/tests/unit/core/test-string.cpp +++ b/tests/unit/core/test-string.cpp @@ -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 */ } /*