Need to inherit from ExpressionParser in order to expose the protected parseString as a public method
| 12 | // Need to inherit from ExpressionParser in order to expose the |
| 13 | // protected parseString as a public method |
| 14 | class ExpressionParserSubClass : public ExpressionParser { |
| 15 | public: |
| 16 | using ExpressionParser::fuzzyFind; |
| 17 | using ExpressionParser::parseString; |
| 18 | }; |
| 19 | |
| 20 | class ExpressionParserTest : public ::testing::Test { |
| 21 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected