| 603 | } |
| 604 | |
| 605 | void endsWith() const |
| 606 | { |
| 607 | ASSERT(::endsWith("test", "test")); |
| 608 | ASSERT(::endsWith("test2", "2")); |
| 609 | ASSERT(::endsWith("test test", "test")); |
| 610 | ASSERT(::endsWith("test", "t")); |
| 611 | ASSERT(!::endsWith("", "test")); |
| 612 | ASSERT(!::endsWith("tes", "test")); |
| 613 | ASSERT(!::endsWith("2test", "2")); |
| 614 | } |
| 615 | }; |
| 616 | |
| 617 | REGISTER_TEST(TestUtils) |
no test coverage detected