#include <algorithm>
#include <memory>
#include <optional>
#include <utility>
#include <vector>
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/run_loop.h"
#include "base/test/task_environment.h"
#include "mojo/public/cpp/bindings/associated_receiver.h"
#include "mojo/public/cpp/bindings/associated_receiver_set.h"
#include "mojo/public/cpp/bindings/associated_remote.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "mojo/public/cpp/bindings/unique_receiver_set.h"
#include "mojo/public/interfaces/bindings/tests/new_endpoint_types.test-mojom.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace mojo {
namespace test {
namespace new_endpoint_types {
class FactoryImpl;
class WidgetImpl : public mojom::Widget { … };
class FactoryImpl : public mojom::WidgetFactory { … };
class ClientImpl : public mojom::WidgetClient { … };
class ObserverImpl : public mojom::WidgetObserver { … };
class PingerImpl : public mojom::Pinger { … };
class AssociatedPingerHostImpl : public mojom::AssociatedPingerHost { … };
TEST(NewEndpointTypesTest, BasicUsage) { … }
TEST(NewEndpointTypesTest, AssociatedTypes) { … }
}
}
}