llvm/lldb/unittests/API/SBCommandInterpreterTest.cpp

//===-- SBCommandInterpreterTest.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/API/SBCommandInterpreter.h"
#include "lldb/API/SBCommandReturnObject.h"
#include "lldb/API/SBDebugger.h"

#include <cstring>
#include <string>

usingnamespacelldb;

class SBCommandInterpreterTest : public testing::Test {};

class DummyCommand : public SBCommandPluginInterface {};

TEST_F(SBCommandInterpreterTest, SingleWordCommand) {}

TEST_F(SBCommandInterpreterTest, MultiWordCommand) {}