The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# Copyright (C) 2012 Xerxes Tsang
# This program is free software; you can redistribute it and/or modify it
# under the terms of Perl Artistic License.
use strict;
use base qw/Test::Class/;
sub test_can_create_ad_api_error_and_set_all_fields : Test(5) {
my $ad_api_error = Microsoft::AdCenter::V7::ReportingService::AdApiError->new
->Code('code')
->Detail('detail')
->ErrorCode('error code')
->Message('message')
;
ok($ad_api_error);
is($ad_api_error->Code, 'code', 'can get code');
is($ad_api_error->Detail, 'detail', 'can get detail');
is($ad_api_error->ErrorCode, 'error code', 'can get error code');
is($ad_api_error->Message, 'message', 'can get message');
};
1;