llvm/llvm/unittests/DebugInfo/LogicalView/SelectElementsTest.cpp

//===- llvm/unittest/DebugInfo/LogicalView/SelectElementsTest.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 "llvm/DebugInfo/LogicalView/Core/LVLine.h"
#include "llvm/DebugInfo/LogicalView/Core/LVReader.h"
#include "llvm/DebugInfo/LogicalView/Core/LVScope.h"
#include "llvm/DebugInfo/LogicalView/Core/LVSymbol.h"
#include "llvm/DebugInfo/LogicalView/Core/LVType.h"
#include "llvm/Support/ScopedPrinter.h"
#include "llvm/Support/ToolOutputFile.h"
#include "llvm/Testing/Support/Error.h"

#include "gtest/gtest.h"

usingnamespacellvm;
usingnamespacellvm::logicalview;

namespace {

class ReaderTestSelection : public LVReader {};

// Helper function to add a logical element to a given scope.
void ReaderTestSelection::add(LVScope *Parent, LVElement *Child) {}

// Helper function to set the initial values for a given logical element.
void ReaderTestSelection::set(LVElement *Element, StringRef Name,
                              LVOffset Offset, uint32_t LineNumber,
                              LVElement *Type) {}

// Create the logical elements.
void ReaderTestSelection::createElements() {}

// Create the logical view adding the created logical elements.
void ReaderTestSelection::addElements() {}

void ReaderTestSelection::resolvePatterns(LVPatterns &Patterns) {}

// Set initial values to logical elements.
void ReaderTestSelection::initElements() {}

// Check logical elements kind patterns.
void ReaderTestSelection::checkKindPatterns() {}

// Check logical elements generic patterns (Case sensitive).
void ReaderTestSelection::checkGenericPatterns() {}

// Check logical elements flexible patterns (case insensitive, RegEx).
void ReaderTestSelection::checkFlexiblePatterns() {}

TEST(LogicalViewTest, SelectElements) {}

} // namespace