| 25 | |
| 26 | void TestRemoveAll() { |
| 27 | static const struct T { |
| 28 | const char* Str; |
| 29 | char Ch; |
| 30 | const char* Result; |
| 31 | } tests[] = { |
| 32 | {"", 'x', ""}, |
| 33 | {"hello world", 'h', "ello world"}, |
| 34 | {"hello world", 'l', "heo word"}, |
no outgoing calls
no test coverage detected