//===- TestUtilities.h ------------------------------------------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// #ifndef LLDB_UNITTESTS_TESTINGSUPPORT_TESTUTILITIES_H #define LLDB_UNITTESTS_TESTINGSUPPORT_TESTUTILITIES_H #include "lldb/Core/ModuleSpec.h" #include "lldb/Utility/DataBuffer.h" #include "llvm/ADT/SmallString.h" #include "llvm/ADT/Twine.h" #include "llvm/Support/Error.h" #include "llvm/Support/FileUtilities.h" #include <string> #define ASSERT_NO_ERROR(x) … namespace lldb_private { std::string GetInputFilePath(const llvm::Twine &name); class TestUtilities { … }; class TestFile { … }; } // namespace lldb_private #endif