llvm/lldb/unittests/Interpreter/TestCommandPaths.cpp

//===-- ProcessEventDataTest.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 "Plugins/Platform/MacOSX/PlatformMacOSX.h"
#include "Plugins/Platform/MacOSX/PlatformRemoteMacOSX.h"
#include "lldb/Core/Debugger.h"
#include "lldb/Host/FileSystem.h"
#include "lldb/Host/HostInfo.h"
#include "lldb/Interpreter/CommandInterpreter.h"
#include "lldb/Interpreter/CommandObject.h"
#include "lldb/Interpreter/CommandObjectMultiword.h"
#include "lldb/Interpreter/CommandReturnObject.h"
#include "lldb/Utility/Args.h"
#include "lldb/Utility/Status.h"

#include "gtest/gtest.h"

usingnamespacelldb_private;
usingnamespacelldb_private::repro;
usingnamespacelldb;

namespace {
class VerifyUserMultiwordCmdPathTest : public ::testing::Test {};
} // namespace

class CommandObjectLeaf : public CommandObjectParsed {};

class CommandObjectMultiwordSubDummy : public CommandObjectMultiword {};

class CommandObjectMultiwordDummy : public CommandObjectMultiword {};

// Pass in the command path to args.  If success is true, we make sure the MWC
// returned matches the test string.  If success is false, we make sure the
// lookup error matches test_str.
void RunTest(CommandInterpreter &interp, const char *args, bool is_leaf,
             bool success, const char *test_str) {}

TEST_F(VerifyUserMultiwordCmdPathTest, TestErrors) {}