chromium/services/service_manager/public/cpp/standalone_connector_impl_unittest.cc

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

#include "services/service_manager/public/cpp/standalone_connector_impl.h"

#include <optional>

#include "base/run_loop.h"
#include "base/test/bind.h"
#include "base/test/task_environment.h"
#include "mojo/public/cpp/bindings/generic_pending_receiver.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "services/service_manager/public/cpp/connector.h"
#include "services/service_manager/public/cpp/standalone_connector_impl_unittest.test-mojom.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace service_manager {
namespace standalone_connector_impl_unittest {

class TestConnectorDelegate : public StandaloneConnectorImpl::Delegate {};

class StandaloneConnectorImplTest : public testing::Test {};

TEST_F(StandaloneConnectorImplTest, Connect) {}

TEST_F(StandaloneConnectorImplTest, Clone) {}

}  // namespace standalone_connector_impl_unittest
}  // namespace service_manager