#include "ASTMatchersTest.h"
#include "clang/ASTMatchers/ASTMatchers.h"
#include "clang/ASTMatchers/GtestMatchers.h"
namespace clang {
namespace ast_matchers {
constexpr llvm::StringLiteral GtestMockDecls = …;
static std::string wrapGtest(llvm::StringRef Input) { … }
TEST(GtestAssertTest, ShouldMatchAssert) { … }
TEST(GtestAssertTest, ShouldNotMatchExpect) { … }
TEST(GtestAssertTest, ShouldMatchNestedAssert) { … }
TEST(GtestExpectTest, ShouldMatchExpect) { … }
TEST(GtestExpectTest, ShouldNotMatchAssert) { … }
TEST(GtestExpectTest, NeShouldMatchExpectNe) { … }
TEST(GtestExpectTest, LeShouldMatchExpectLe) { … }
TEST(GtestExpectTest, LtShouldMatchExpectLt) { … }
TEST(GtestExpectTest, GeShouldMatchExpectGe) { … }
TEST(GtestExpectTest, GtShouldMatchExpectGt) { … }
TEST(GtestExpectTest, ThatShouldMatchAssertThat) { … }
TEST(GtestExpectTest, ThatShouldMatchExpectThat) { … }
TEST(GtestOnCallTest, CallShouldMatchOnCallWithoutParams1) { … }
TEST(GtestOnCallTest, CallShouldMatchOnCallWithoutParams2) { … }
TEST(GtestOnCallTest, CallShouldMatchOnCallWithParams1) { … }
TEST(GtestOnCallTest, CallShouldMatchOnCallWithParams2) { … }
TEST(GtestExpectCallTest, CallShouldMatchExpectCallWithoutParams1) { … }
TEST(GtestExpectCallTest, CallShouldMatchExpectCallWithoutParams2) { … }
TEST(GtestExpectCallTest, CallShouldMatchExpectCallWithParams1) { … }
TEST(GtestExpectCallTest, CallShouldMatchExpectCallWithParams2) { … }
}
}