| 32 | } |
| 33 | |
| 34 | static void testRightTrim() |
| 35 | { |
| 36 | AssertThat(rightTrimWhitespace("string"), Equals("string")); |
| 37 | AssertThat(rightTrimWhitespace(" string"), Equals(" string")); |
| 38 | AssertThat(rightTrimWhitespace(" string "), Equals(" string")); |
| 39 | AssertThat(rightTrimWhitespace("string "), Equals("string")); |
| 40 | } |
| 41 | |
| 42 | static void testTrim() |
| 43 | { |
no test coverage detected