llvm/clang-tools-extra/unittests/clang-query/QueryEngineTest.cpp

//===-- QueryEngineTest.cpp - clang-query test ----------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "Query.h"
#include "QueryParser.h"
#include "QuerySession.h"
#include "clang/ASTMatchers/ASTMatchers.h"
#include "clang/ASTMatchers/Dynamic/VariantValue.h"
#include "clang/Frontend/ASTUnit.h"
#include "clang/Tooling/Tooling.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/Support/raw_ostream.h"
#include "gtest/gtest.h"
#include <string>

usingnamespaceclang;
usingnamespaceclang::ast_matchers;
usingnamespaceclang::ast_matchers::dynamic;
usingnamespaceclang::query;
usingnamespaceclang::tooling;

class QueryEngineTest : public ::testing::Test {};

TEST_F(QueryEngineTest, Basic) {}

TEST_F(QueryEngineTest, LetAndMatch) {}