//===-- ProcessInstanceInfoTest.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 "lldb/Target/Process.h" #include "gtest/gtest.h" #include <optional> usingnamespacelldb_private; namespace { /// A very simple resolver which fails for even ids and returns a simple string /// for odd ones. class DummyUserIDResolver : public UserIDResolver { … }; } // namespace TEST(ProcessInstanceInfo, Dump) { … } TEST(ProcessInstanceInfo, DumpTable) { … } TEST(ProcessInstanceInfo, DumpTable_invalidUID) { … } TEST(ProcessInstanceInfoMatch, Name) { … }