summaryrefslogtreecommitdiff
path: root/unittests/Utility/Helpers/TestUtilities.h
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/Utility/Helpers/TestUtilities.h')
-rw-r--r--unittests/Utility/Helpers/TestUtilities.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/unittests/Utility/Helpers/TestUtilities.h b/unittests/Utility/Helpers/TestUtilities.h
new file mode 100644
index 0000000000000..8d848797b7b2e
--- /dev/null
+++ b/unittests/Utility/Helpers/TestUtilities.h
@@ -0,0 +1,20 @@
+//===- TestUtilities.h ------------------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLDB_UNITTESTS_UTILITY_HELPERS_TESTUTILITIES_H
+#define LLDB_UNITTESTS_UTILITY_HELPERS_TESTUTILITIES_H
+
+#include "llvm/ADT/Twine.h"
+#include <string>
+
+namespace lldb_private {
+std::string GetInputFilePath(const llvm::Twine &name);
+}
+
+#endif