blob: 0e63a5f002f90f3b4a9451f05b8a4e271c7e7339 [file] [log] [blame]
Sam McCall0cdc04a2023-06-27 03:33:00 -07001// 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
12namespace clang::tidy::nullability {
13
14testing::Matcher<const proto2::Message&> EqualsProto(llvm::StringRef Textual);
15
16} // namespace clang::tidy::nullability
17
18#endif