Skip to content

Commit 1316bdf

Browse files
this time
1 parent 424d26d commit 1316bdf

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

code/tests/cases/test_text.cpp

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,6 @@ FOSSIL_TEARDOWN(cpp_text_fixture) {
4242

4343
using fossil::media::Text;
4444

45-
FOSSIL_TEST_CASE(cpp_test_text_trim_basic) {
46-
std::string input = " hello world ";
47-
std::string trimmed = Text::trim(input);
48-
ASSUME_ITS_EQUAL_CSTR(trimmed, "hello world");
49-
}
50-
51-
FOSSIL_TEST_CASE(cpp_test_text_trim_all_spaces) {
52-
std::string input = " ";
53-
std::string trimmed = Text::trim(input);
54-
ASSUME_ITS_TRUE(trimmed.empty());
55-
}
56-
5745
FOSSIL_TEST_CASE(cpp_test_text_trim_no_spaces) {
5846
std::string input = "abc";
5947
std::string trimmed = Text::trim(input);
@@ -137,8 +125,6 @@ FOSSIL_TEST_CASE(cpp_test_text_split_empty_string) {
137125
// * Fossil Logic Test Pool
138126
// * * * * * * * * * * * * * * * * * * * * * * * *
139127
FOSSIL_TEST_GROUP(cpp_text_tests) {
140-
FOSSIL_TEST_ADD(cpp_text_fixture, cpp_test_text_trim_basic);
141-
FOSSIL_TEST_ADD(cpp_text_fixture, cpp_test_text_trim_all_spaces);
142128
FOSSIL_TEST_ADD(cpp_text_fixture, cpp_test_text_trim_no_spaces);
143129
FOSSIL_TEST_ADD(cpp_text_fixture, cpp_test_text_tolower_basic);
144130
FOSSIL_TEST_ADD(cpp_text_fixture, cpp_test_text_toupper_basic);

0 commit comments

Comments
 (0)