| 7 | using namespace Exiv2::Internal; |
| 8 | |
| 9 | TEST(stringUtils, startsWithReturnsTrue) { |
| 10 | ASSERT_TRUE(startsWith("Exiv2 rocks", "Exiv2")); |
| 11 | } |
| 12 | |
| 13 | TEST(stringUtils, startsWithReturnsFlase) { |
| 14 | ASSERT_FALSE(startsWith("Exiv2 rocks", "exiv2")); |
nothing calls this directly
no test coverage detected