def test_image_annotator_client_get_transport_class():
    transport = ImageAnnotatorClient.get_transport_class()
    available_transports = [
        transports.ImageAnnotatorGrpcTransport,
    ]
    assert transport in available_transports

    transport = ImageAnnotatorClient.get_transport_class("grpc")
    assert transport == transports.ImageAnnotatorGrpcTransport
def test_client_withDEFAULT_CLIENT_INFO():
    client_info = gapic_v1.client_info.ClientInfo()

    with mock.patch.object(transports.ImageAnnotatorTransport,
                           "_prep_wrapped_messages") as prep:
        client = ImageAnnotatorClient(
            credentials=credentials.AnonymousCredentials(),
            client_info=client_info,
        )
        prep.assert_called_once_with(client_info)

    with mock.patch.object(transports.ImageAnnotatorTransport,
                           "_prep_wrapped_messages") as prep:
        transport_class = ImageAnnotatorClient.get_transport_class()
        transport = transport_class(
            credentials=credentials.AnonymousCredentials(),
            client_info=client_info,
        )
        prep.assert_called_once_with(client_info)
def test_image_annotator_client_get_transport_class():
    transport = ImageAnnotatorClient.get_transport_class()
    assert transport == transports.ImageAnnotatorGrpcTransport

    transport = ImageAnnotatorClient.get_transport_class("grpc")
    assert transport == transports.ImageAnnotatorGrpcTransport