File Coverage

blib/lib/Google/Ads/GoogleAds/V11/Enums/DistanceBucketEnum.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             # Copyright 2020, Google LLC
2             #
3             # Licensed under the Apache License, Version 2.0 (the "License");
4             # you may not use this file except in compliance with the License.
5             # You may obtain a copy of the License at
6             #
7             # http://www.apache.org/licenses/LICENSE-2.0
8             #
9             # Unless required by applicable law or agreed to in writing, software
10             # distributed under the License is distributed on an "AS IS" BASIS,
11             # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12             # See the License for the specific language governing permissions and
13             # limitations under the License.
14              
15              
16             use strict;
17 1     1   676 use warnings;
  1         3  
  1         22  
18 1     1   4  
  1         1  
  1         84  
19             use Const::Exporter enums => [
20 1         18 UNSPECIFIED => "UNSPECIFIED",
21             UNKNOWN => "UNKNOWN",
22             WITHIN_700M => "WITHIN_700M",
23             WITHIN_1KM => "WITHIN_1KM",
24             WITHIN_5KM => "WITHIN_5KM",
25             WITHIN_10KM => "WITHIN_10KM",
26             WITHIN_15KM => "WITHIN_15KM",
27             WITHIN_20KM => "WITHIN_20KM",
28             WITHIN_25KM => "WITHIN_25KM",
29             WITHIN_30KM => "WITHIN_30KM",
30             WITHIN_35KM => "WITHIN_35KM",
31             WITHIN_40KM => "WITHIN_40KM",
32             WITHIN_45KM => "WITHIN_45KM",
33             WITHIN_50KM => "WITHIN_50KM",
34             WITHIN_55KM => "WITHIN_55KM",
35             WITHIN_60KM => "WITHIN_60KM",
36             WITHIN_65KM => "WITHIN_65KM",
37             BEYOND_65KM => "BEYOND_65KM",
38             WITHIN_0_7MILES => "WITHIN_0_7MILES",
39             WITHIN_1MILE => "WITHIN_1MILE",
40             WITHIN_5MILES => "WITHIN_5MILES",
41             WITHIN_10MILES => "WITHIN_10MILES",
42             WITHIN_15MILES => "WITHIN_15MILES",
43             WITHIN_20MILES => "WITHIN_20MILES",
44             WITHIN_25MILES => "WITHIN_25MILES",
45             WITHIN_30MILES => "WITHIN_30MILES",
46             WITHIN_35MILES => "WITHIN_35MILES",
47             WITHIN_40MILES => "WITHIN_40MILES",
48             BEYOND_40MILES => "BEYOND_40MILES"
49             ];
50 1     1   5  
  1         2  
51             1;