llvm/lldb/unittests/Core/SourceLocationSpecTest.cpp

//===-- SourceLocationSpecTest.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 "gtest/gtest.h"

#include "lldb/Core/SourceLocationSpec.h"
#include "lldb/Utility/LLDBAssert.h"

#include "llvm/Testing/Support/Error.h"

usingnamespacelldb_private;

TEST(SourceLocationSpecTest, OperatorBool) {}

TEST(SourceLocationSpecTest, FileLineColumnComponents) {}

static SourceLocationSpec Create(bool check_inlines, bool exact_match,
                                 FileSpec fs, uint32_t line,
                                 uint16_t column = LLDB_INVALID_COLUMN_NUMBER) {}

TEST(SourceLocationSpecTest, Equal) {}

TEST(SourceLocationSpecTest, Compare) {}