llvm/lldb/unittests/Utility/OptionsWithRawTest.cpp

//===-- OptionsWithRawTest.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/Utility/Args.h"
#include "lldb/Utility/StringList.h"

usingnamespacelldb_private;

TEST(OptionsWithRawTest, EmptyInput) {}

TEST(OptionsWithRawTest, SingleWhitespaceInput) {}

TEST(OptionsWithRawTest, WhitespaceInput) {}

TEST(OptionsWithRawTest, ArgsButNoDelimiter) {}

TEST(OptionsWithRawTest, ArgsButNoLeadingDash) {}

TEST(OptionsWithRawTest, QuotedSuffix) {}

TEST(OptionsWithRawTest, EmptySuffix) {}

TEST(OptionsWithRawTest, EmptySuffixSingleWhitespace) {}

TEST(OptionsWithRawTest, WhitespaceSuffix) {}

TEST(OptionsWithRawTest, LeadingSpaceArgs) {}

TEST(OptionsWithRawTest, SingleWordSuffix) {}

TEST(OptionsWithRawTest, MultiWordSuffix) {}

TEST(OptionsWithRawTest, UnterminatedQuote) {}

TEST(OptionsWithRawTest, TerminatedQuote) {}

TEST(OptionsWithRawTest, EmptyArgsOnlySuffix) {}