| 16 | class TestCase { |
| 17 | public: |
| 18 | TestCase(const string& pattern, const string& testString, int flags, int expected) : |
| 19 | pattern(pattern), |
| 20 | testString(testString), |
| 21 | flags(flags), |
| 22 | expected(expected) |
| 23 | {} |
| 24 | string pattern; |
| 25 | string testString; |
| 26 | int flags; |
nothing calls this directly
no outgoing calls
no test coverage detected