Esempio n. 1
0
def test_dynamic_search_ads_search_term_view_service_client_get_transport_class(
):
    transport = DynamicSearchAdsSearchTermViewServiceClient.get_transport_class(
    )
    assert transport == transports.DynamicSearchAdsSearchTermViewServiceGrpcTransport

    transport = DynamicSearchAdsSearchTermViewServiceClient.get_transport_class(
        "grpc")
    assert transport == transports.DynamicSearchAdsSearchTermViewServiceGrpcTransport
Esempio n. 2
0
def test_client_withDEFAULT_CLIENT_INFO():
    client_info = gapic_v1.client_info.ClientInfo()

    with mock.patch.object(
            transports.DynamicSearchAdsSearchTermViewServiceTransport,
            '_prep_wrapped_messages') as prep:
        client = DynamicSearchAdsSearchTermViewServiceClient(
            credentials=ga_credentials.AnonymousCredentials(),
            client_info=client_info,
        )
        prep.assert_called_once_with(client_info)

    with mock.patch.object(
            transports.DynamicSearchAdsSearchTermViewServiceTransport,
            '_prep_wrapped_messages') as prep:
        transport_class = DynamicSearchAdsSearchTermViewServiceClient.get_transport_class(
        )
        transport = transport_class(
            credentials=ga_credentials.AnonymousCredentials(),
            client_info=client_info,
        )
        prep.assert_called_once_with(client_info)