| 2809 | |
| 2810 | struct StringHolder : MatcherBase<NSString *> { |
| 2811 | StringHolder(NSString *substr) : m_substr([substr copy]) { |
| 2812 | } |
| 2813 | StringHolder(StringHolder const &other) : m_substr([other.m_substr copy]) { |
| 2814 | } |
| 2815 | StringHolder() { |
nothing calls this directly
no test coverage detected