AgentPushKit-Client

 view release on metacpan or  search on metacpan

t/AuthenticationApiTest.t  view on Meta::CPAN

=begin comment

Agent Push Kit API

The complete Agent Push Kit REST API. Application event ingestion uses an organization key beginning with `apk_`. Authenticated user operations accept either an Agent Push Kit login JWT or an agent access token beginning with `apt_`.

The version of the OpenAPI document: 0.1.0

Generated by: https://openapi-generator.tech

=end comment

=cut

#
# NOTE: This class is auto generated by OpenAPI Generator
# Please update the test cases below to test the API endpoints.
# Ref: https://openapi-generator.tech
#
use Test::More;
use Test::Exception;

use lib 'lib';
use strict;
use warnings;

use_ok('AgentPushKit::Client::AuthenticationApi');

my $api = AgentPushKit::Client::AuthenticationApi->new();
isa_ok($api, 'AgentPushKit::Client::AuthenticationApi');

#
# complete_password_reset test
#
# uncomment below and update the test
#my $complete_password_reset_password_reset_complete_input = undef; # replace NULL with a proper value
#my $complete_password_reset_result = $api->complete_password_reset(password_reset_complete_input => $complete_password_reset_password_reset_complete_input);

#
# login_with_apple test
#
# uncomment below and update the test
#my $login_with_apple_provider_login_input = undef; # replace NULL with a proper value
#my $login_with_apple_result = $api->login_with_apple(provider_login_input => $login_with_apple_provider_login_input);

#
# login_with_google test
#
# uncomment below and update the test
#my $login_with_google_provider_login_input = undef; # replace NULL with a proper value
#my $login_with_google_result = $api->login_with_google(provider_login_input => $login_with_google_provider_login_input);

#
# login_with_password test
#
# uncomment below and update the test
#my $login_with_password_password_login_input = undef; # replace NULL with a proper value
#my $login_with_password_result = $api->login_with_password(password_login_input => $login_with_password_password_login_input);

#
# register test
#
# uncomment below and update the test
#my $register_register_input = undef; # replace NULL with a proper value
#my $register_result = $api->register(register_input => $register_register_input);

#
# request_password_reset test
#
# uncomment below and update the test
#my $request_password_reset_password_reset_request_input = undef; # replace NULL with a proper value
#my $request_password_reset_result = $api->request_password_reset(password_reset_request_input => $request_password_reset_password_reset_request_input);


done_testing();



( run in 0.398 second using v1.01-cache-2.11-cpan-4ef0a570458 )