def test_video_intelligence_service_client_get_transport_class():
    transport = VideoIntelligenceServiceClient.get_transport_class()
    available_transports = [
        transports.VideoIntelligenceServiceGrpcTransport,
    ]
    assert transport in available_transports

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

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

    with mock.patch.object(transports.VideoIntelligenceServiceTransport,
                           "_prep_wrapped_messages") as prep:
        transport_class = VideoIntelligenceServiceClient.get_transport_class()
        transport = transport_class(
            credentials=ga_credentials.AnonymousCredentials(),
            client_info=client_info,
        )
        prep.assert_called_once_with(client_info)