this is the method we are going to test. It returns the length of the input string.
| 18 | // this is the method we are going to test. It returns the length of the |
| 19 | // input string. |
| 20 | size_t GetLength( const std::string& input ) const { return input.size(); } |
| 21 | }; |
| 22 | |
| 23 |