//===-- AdbClientTest.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 "Plugins/Platform/Android/AdbClient.h" #include <cstdlib> static void set_env(const char *var, const char *value) { … } usingnamespacelldb; usingnamespacelldb_private; namespace lldb_private { namespace platform_android { class AdbClientTest : public ::testing::Test { … }; TEST(AdbClientTest, CreateByDeviceId) { … } TEST(AdbClientTest, CreateByDeviceId_ByEnvVar) { … } } // end namespace platform_android } // end namespace lldb_private