// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // Unit test to make sure that the serialization of synchronous IPC messages // works. This ensures that the macros and templates were defined correctly. // Doesn't test the IPC channel mechanism. #include "base/check_op.h" #include "ipc/ipc_message.h" #include "ipc/ipc_message_utils.h" #include "testing/gtest/include/gtest/gtest.h" #define IPC_MESSAGE_IMPL #include "ipc/ipc_sync_message_unittest.h" namespace { static IPC::Message* g_reply; class TestMessageReceiver { … }; void Send(IPC::SyncMessage* msg) { … } TEST(IPCSyncMessageTest, Main) { … } } // namespace