#include <gtest/gtest.h>
#include <grpc/support/log.h>
#include <grpcpp/channel.h>
#include <grpcpp/create_channel.h>
#include <grpcpp/impl/grpc_library.h>
#include <grpcpp/security/credentials.h>
#include <grpcpp/security/server_credentials.h>
#include <grpcpp/server.h>
#include <grpcpp/server_builder.h>
#include "src/core/ext/transport/chttp2/transport/chttp2_transport.h"
#include "src/core/lib/channel/channel_args.h"
#include "src/core/lib/iomgr/endpoint.h"
#include "src/core/lib/iomgr/endpoint_pair.h"
#include "src/core/lib/iomgr/exec_ctx.h"
#include "src/core/lib/iomgr/tcp_posix.h"
#include "src/core/lib/surface/channel.h"
#include "src/core/lib/surface/completion_queue.h"
#include "src/core/lib/surface/server.h"
#include "src/cpp/client/create_channel_internal.h"
#include "src/proto/grpc/testing/echo.grpc.pb.h"
#include "test/core/util/passthru_endpoint.h"
#include "test/core/util/port.h"
#include "test/core/util/test_config.h"
Go to the source code of this file.
Classes | |
class | grpc::testing::EndpointPairFixture |
class | grpc::testing::InProcessCHTTP2 |
Namespaces | |
grpc | |
grpc::testing | |
Functions | |
static void | grpc::testing::ApplyCommonChannelArguments (ChannelArguments *c) |
static void | grpc::testing::ApplyCommonServerBuilderConfig (ServerBuilder *b) |
int | main (int argc, char **argv) |
static void * | grpc::testing::tag (intptr_t x) |
grpc::testing::TEST (WritesPerRpcTest, UnaryPingPong) | |
static double | grpc::testing::UnaryPingPong (int request_size, int response_size) |
Definition at line 242 of file writes_per_rpc_test.cc.