Sam McCall | 0cdc04a | 2023-06-27 03:33:00 -0700 | [diff] [blame] | 1 | // Part of the Crubit project, under the Apache License v2.0 with LLVM |
| 2 | // Exceptions. See /LICENSE for license information. |
| 3 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 4 | |
| 5 | #ifndef CRUBIT_NULLABILITY_PROTO_MATCHERS_H_ |
| 6 | #define CRUBIT_NULLABILITY_PROTO_MATCHERS_H_ |
| 7 | |
| 8 | #include "llvm/ADT/StringRef.h" |
| 9 | #include "third_party/llvm/llvm-project/third-party/unittest/googlemock/include/gmock/gmock.h" |
| 10 | #include "third_party/protobuf/message.h" |
| 11 | |
| 12 | namespace clang::tidy::nullability { |
| 13 | |
| 14 | testing::Matcher<const proto2::Message&> EqualsProto(llvm::StringRef Textual); |
| 15 | |
| 16 | } // namespace clang::tidy::nullability |
| 17 | |
| 18 | #endif |