llvm/llvm/unittests/DebugInfo/LogicalView/LocationRangesTest.cpp

//===- llvm/unittest/DebugInfo/LogicalView/LocationRangesTest.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 ReaderTest : public LVReader {};

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

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

// Helper function to set the initial values for a given logical location.
void ReaderTest::set(LVLocation *Location, LVLine *LowerLine, LVLine *UpperLine,
                     LVAddress LowerAddress, LVAddress UpperAddress) {}

// Helper function to add a logical location to a logical symbol.
void ReaderTest::add(LVSymbol *Symbol, LVLine *LowerLine, LVLine *UpperLine) {}

class ReaderTestLocations : public ReaderTest {};

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

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

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

class ReaderTestCoverage : public ReaderTest {};

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

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

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

TEST(LogicalViewTest, LocationRanges) {}

TEST(LogicalViewTest, LocationCoverage) {}

} // namespace