chromium/chrome/updater/app/server/posix/ipc_unittests.cc

// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <memory>
#include <string>
#include <tuple>
#include <utility>
#include <vector>

#include "base/command_line.h"
#include "base/files/file_path.h"
#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/scoped_refptr.h"
#include "base/ranges/algorithm.h"
#include "base/run_loop.h"
#include "base/test/bind.h"
#include "base/test/mock_callback.h"
#include "base/test/multiprocess_test.h"
#include "base/test/task_environment.h"
#include "base/test/test_timeouts.h"
#include "base/time/time.h"
#include "base/version.h"
#include "chrome/updater/app/server/posix/update_service_internal_stub.h"
#include "chrome/updater/app/server/posix/update_service_stub.h"
#include "chrome/updater/ipc/ipc_support.h"
#include "chrome/updater/registration_data.h"
#include "chrome/updater/service_proxy_factory.h"
#include "chrome/updater/update_service.h"
#include "chrome/updater/updater_scope.h"
#include "chrome/updater/util/util.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/multiprocess_func_list.h"

namespace updater {

class UpdaterIPCTestCase : public testing::Test {};

TEST_F(UpdaterIPCTestCase, AllRpcsComplete) {}

MULTIPROCESS_TEST_MAIN(UpdateServiceClient) {}

class FakeUpdateServiceInternal : public UpdateServiceInternal {};

class UpdaterIPCInternalTestCase : public UpdaterIPCTestCase {};

TEST_F(UpdaterIPCInternalTestCase, AllIpcsComplete) {}

MULTIPROCESS_TEST_MAIN(UpdateServiceInternalClient) {}

}  // namespace updater