Constructs a null matcher. Needed for storing Matcher objects in STL containers. A default-constructed matcher is not yet initialized. You cannot use it until a valid value has been assigned to it.
| 9232 | // containers. A default-constructed matcher is not yet initialized. You |
| 9233 | // cannot use it until a valid value has been assigned to it. |
| 9234 | explicit Matcher() {} // NOLINT |
| 9235 | |
| 9236 | // Constructs a matcher from its implementation. |
| 9237 | explicit Matcher(const MatcherInterface<const T&>* impl) |
nothing calls this directly
no outgoing calls
no test coverage detected