//===-- ArgsTest.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/Interpreter/OptionArgParser.h" #include "llvm/Support/Error.h" usingnamespacelldb_private; TEST(OptionArgParserTest, toBoolean) { … } void TestToBooleanWithExpectedBool(llvm::StringRef option_arg, bool expected_parse_success, bool expected_result) { … } TEST(OptionArgParserTest, toBooleanWithExpectedBool) { … } TEST(OptionArgParserTest, toChar) { … } TEST(OptionArgParserTest, toScriptLanguage) { … }