llvm/clang/unittests/Analysis/FlowSensitive/RecordOpsTest.cpp

//===- unittests/Analysis/FlowSensitive/RecordOpsTest.cpp -----------------===//
//
// 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 "clang/Analysis/FlowSensitive/RecordOps.h"
#include "TestingSupport.h"
#include "llvm/Testing/Support/Error.h"
#include "gtest/gtest.h"

namespace clang {
namespace dataflow {
namespace test {
namespace {

void runDataflow(
    llvm::StringRef Code,
    std::function<llvm::StringMap<QualType>(QualType)> SyntheticFieldCallback,
    std::function<
        void(const llvm::StringMap<DataflowAnalysisState<NoopLattice>> &,
             ASTContext &)>
        VerifyResults) {}

const FieldDecl *getFieldNamed(RecordDecl *RD, llvm::StringRef Name) {}

TEST(RecordOpsTest, CopyRecord) {}

TEST(RecordOpsTest, RecordsEqual) {}

TEST(TransferTest, CopyRecordBetweenDerivedAndBase) {}

} // namespace
} // namespace test
} // namespace dataflow
} // namespace clang