Files
rk35xx-android14/external/libchrome/mojo/public/cpp/base/process_id_unittest.cc
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

23 lines
819 B
C++

// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "mojo/public/cpp/base/process_id_mojom_traits.h"
#include "mojo/public/cpp/test_support/test_utils.h"
#include "mojo/public/mojom/base/process_id.mojom.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace mojo_base {
namespace process_id_unittest {
TEST(ProcessIdTest, ProcessId) {
base::ProcessId pid = base::GetCurrentProcId();
base::ProcessId out_pid = base::kNullProcessId;
ASSERT_NE(pid, out_pid);
EXPECT_TRUE(mojom::ProcessId::Deserialize(mojom::ProcessId::Serialize(&pid),
&out_pid));
EXPECT_EQ(pid, out_pid);
}
} // namespace process_id_unittest
} // namespace mojo_base