The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
|
sub test_can_create_get_ad_rotation_by_ad_group_ids_response_and_set_all_fields : Test(2) {
my $get_ad_rotation_by_ad_group_ids_response = Microsoft::AdCenter::V8::CampaignManagementService::GetAdRotationByAdGroupIdsResponse->new
->AdRotationByAdGroupIds( 'ad rotation by ad group ids' )
;
ok( $get_ad_rotation_by_ad_group_ids_response );
is( $get_ad_rotation_by_ad_group_ids_response ->AdRotationByAdGroupIds, 'ad rotation by ad group ids' , 'can get ad rotation by ad group ids' );
};
1;
|