@ttoss/cloud-auth 0.4.0 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +6 -6
- package/.turbo/turbo-test.log +12 -11
- package/CHANGELOG.md +6 -0
- package/coverage/clover.xml +163 -161
- package/coverage/coverage-final.json +1 -1
- package/coverage/lcov-report/config.ts.html +1 -1
- package/coverage/lcov-report/index.html +10 -10
- package/coverage/lcov-report/index.ts.html +1 -1
- package/coverage/lcov-report/template.ts.html +158 -152
- package/coverage/lcov.info +169 -167
- package/dist/esm/index.js +4 -3
- package/dist/index.d.ts +2 -1
- package/dist/index.js +4 -3
- package/package.json +2 -2
- package/src/template.ts +4 -2
- package/tests/unit/template.test.ts +8 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -8,10 +8,10 @@ $ tsup
|
|
|
8
8
|
[34mCLI[39m Cleaning output folder
|
|
9
9
|
[34mCJS[39m Build start
|
|
10
10
|
[34mESM[39m Build start
|
|
11
|
-
[32mCJS[39m [1mdist/index.js [22m[32m5.
|
|
12
|
-
[32mCJS[39m ⚡️ Build success in
|
|
13
|
-
[32mESM[39m [1mdist/esm/index.js [22m[
|
|
14
|
-
[32mESM[39m ⚡️ Build success in
|
|
11
|
+
[32mCJS[39m [1mdist/index.js [22m[32m5.07 KB[39m
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 71ms
|
|
13
|
+
[32mESM[39m [1mdist/esm/index.js [22m[32m4.00 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 74ms
|
|
15
15
|
[34mDTS[39m Build start
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
17
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m1.
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 15085ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m1.59 KB[39m
|
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,28 +1,29 @@
|
|
|
1
1
|
warning package.json: No license field
|
|
2
2
|
$ jest
|
|
3
|
-
PASS tests/unit/template.test.ts (
|
|
4
|
-
✓ do not add schema if not provided (
|
|
3
|
+
PASS tests/unit/template.test.ts (7.517 s)
|
|
4
|
+
✓ do not add schema if not provided (71 ms)
|
|
5
5
|
✓ add schema if provided (1 ms)
|
|
6
|
-
✓ should have autoVerifiedAttributes equal email by default
|
|
6
|
+
✓ should have autoVerifiedAttributes equal email by default
|
|
7
7
|
✓ should have autoVerifiedAttributes undefined: []
|
|
8
8
|
✓ should have autoVerifiedAttributes undefined: null
|
|
9
|
-
✓ should have autoVerifiedAttributes undefined: false
|
|
9
|
+
✓ should have autoVerifiedAttributes undefined: false (13 ms)
|
|
10
10
|
✓ should have identity pool by default or true: true (1 ms)
|
|
11
|
-
✓ should have identity pool by default or true: undefined
|
|
12
|
-
✓ should not have identity pool if false (
|
|
13
|
-
✓ should have identity pool role attachment with roles
|
|
11
|
+
✓ should have identity pool by default or true: undefined
|
|
12
|
+
✓ should not have identity pool if false (10 ms)
|
|
13
|
+
✓ should have identity pool role attachment with roles
|
|
14
14
|
✓ should not have identity pool role attachment without roles
|
|
15
|
+
✓ default usernameAttributes should be email
|
|
15
16
|
|
|
16
17
|
-------------|---------|----------|---------|---------|-------------------
|
|
17
18
|
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
|
|
18
19
|
-------------|---------|----------|---------|---------|-------------------
|
|
19
|
-
All files | 98.
|
|
20
|
+
All files | 98.96 | 71.42 | 100 | 98.96 |
|
|
20
21
|
config.ts | 100 | 100 | 100 | 100 |
|
|
21
22
|
index.ts | 100 | 57.14 | 100 | 100 | 1
|
|
22
|
-
template.ts | 98.
|
|
23
|
+
template.ts | 98.95 | 85.71 | 100 | 98.95 | 166-167
|
|
23
24
|
-------------|---------|----------|---------|---------|-------------------
|
|
24
25
|
Test Suites: 1 passed, 1 total
|
|
25
|
-
Tests:
|
|
26
|
+
Tests: 12 passed, 12 total
|
|
26
27
|
Snapshots: 0 total
|
|
27
|
-
Time:
|
|
28
|
+
Time: 8.161 s
|
|
28
29
|
Ran all test suites.
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.5.0](https://github.com/ttoss/ttoss/compare/@ttoss/cloud-auth@0.4.0...@ttoss/cloud-auth@0.5.0) (2023-01-14)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- add iam auth to appsync-api ([#151](https://github.com/ttoss/ttoss/issues/151)) ([c634cdf](https://github.com/ttoss/ttoss/commit/c634cdfc211ba30802907fd864c8db50a9e8c322))
|
|
11
|
+
|
|
6
12
|
# 0.4.0 (2023-01-11)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/coverage/clover.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1673724913070" clover="3.2.0">
|
|
3
|
+
<project timestamp="1673724913070" name="All files">
|
|
4
|
+
<metrics statements="194" coveredstatements="192" conditionals="14" coveredconditionals="10" methods="1" coveredmethods="1" elements="209" coveredelements="203" complexity="0" loc="194" ncloc="194" packages="1" files="3" classes="3"/>
|
|
5
5
|
<file name="config.ts" path="/home/runner/work/ttoss/ttoss/packages/cloud-auth/src/config.ts">
|
|
6
6
|
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
7
7
|
<line num="1" count="1" type="stmt"/>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
<line num="2" count="1" type="stmt"/>
|
|
13
13
|
</file>
|
|
14
14
|
<file name="template.ts" path="/home/runner/work/ttoss/ttoss/packages/cloud-auth/src/template.ts">
|
|
15
|
-
<metrics statements="
|
|
15
|
+
<metrics statements="191" coveredstatements="189" conditionals="7" coveredconditionals="6" methods="1" coveredmethods="1"/>
|
|
16
16
|
<line num="1" count="1" type="stmt"/>
|
|
17
17
|
<line num="2" count="1" type="stmt"/>
|
|
18
18
|
<line num="3" count="1" type="stmt"/>
|
|
@@ -29,140 +29,140 @@
|
|
|
29
29
|
<line num="14" count="1" type="stmt"/>
|
|
30
30
|
<line num="15" count="1" type="stmt"/>
|
|
31
31
|
<line num="16" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
32
|
-
<line num="17" count="
|
|
33
|
-
<line num="18" count="
|
|
34
|
-
<line num="19" count="
|
|
35
|
-
<line num="20" count="
|
|
36
|
-
<line num="21" count="
|
|
37
|
-
<line num="22" count="
|
|
38
|
-
<line num="23" count="
|
|
39
|
-
<line num="24" count="
|
|
40
|
-
<line num="25" count="
|
|
41
|
-
<line num="26" count="
|
|
42
|
-
<line num="27" count="
|
|
43
|
-
<line num="28" count="
|
|
44
|
-
<line num="29" count="
|
|
45
|
-
<line num="30" count="
|
|
46
|
-
<line num="31" count="
|
|
47
|
-
<line num="32" count="
|
|
48
|
-
<line num="33" count="
|
|
49
|
-
<line num="34" count="
|
|
50
|
-
<line num="35" count="
|
|
51
|
-
<line num="36" count="
|
|
52
|
-
<line num="37" count="
|
|
53
|
-
<line num="38" count="
|
|
54
|
-
<line num="39" count="
|
|
55
|
-
<line num="40" count="
|
|
56
|
-
<line num="41" count="
|
|
57
|
-
<line num="42" count="
|
|
58
|
-
<line num="43" count="
|
|
59
|
-
<line num="44" count="
|
|
60
|
-
<line num="45" count="
|
|
61
|
-
<line num="46" count="
|
|
62
|
-
<line num="47" count="
|
|
63
|
-
<line num="48" count="
|
|
64
|
-
<line num="49" count="
|
|
65
|
-
<line num="50" count="
|
|
66
|
-
<line num="51" count="
|
|
67
|
-
<line num="52" count="
|
|
68
|
-
<line num="53" count="
|
|
69
|
-
<line num="54" count="
|
|
70
|
-
<line num="55" count="
|
|
71
|
-
<line num="56" count="
|
|
72
|
-
<line num="57" count="
|
|
73
|
-
<line num="58" count="
|
|
74
|
-
<line num="59" count="
|
|
75
|
-
<line num="60" count="
|
|
76
|
-
<line num="61" count="
|
|
77
|
-
<line num="62" count="
|
|
78
|
-
<line num="63" count="
|
|
79
|
-
<line num="64" count="
|
|
80
|
-
<line num="65" count="
|
|
81
|
-
<line num="66" count="
|
|
82
|
-
<line num="67" count="
|
|
83
|
-
<line num="68" count="
|
|
84
|
-
<line num="69" count="
|
|
85
|
-
<line num="70" count="
|
|
86
|
-
<line num="71" count="
|
|
87
|
-
<line num="72" count="
|
|
88
|
-
<line num="73" count="
|
|
89
|
-
<line num="74" count="
|
|
90
|
-
<line num="75" count="
|
|
91
|
-
<line num="76" count="
|
|
92
|
-
<line num="77" count="
|
|
93
|
-
<line num="78" count="
|
|
94
|
-
<line num="79" count="
|
|
95
|
-
<line num="80" count="
|
|
96
|
-
<line num="81" count="
|
|
97
|
-
<line num="82" count="
|
|
98
|
-
<line num="83" count="
|
|
99
|
-
<line num="84" count="
|
|
100
|
-
<line num="85" count="
|
|
101
|
-
<line num="86" count="
|
|
102
|
-
<line num="87" count="
|
|
103
|
-
<line num="88" count="
|
|
104
|
-
<line num="89" count="
|
|
105
|
-
<line num="90" count="
|
|
106
|
-
<line num="91" count="
|
|
107
|
-
<line num="92" count="
|
|
108
|
-
<line num="93" count="
|
|
109
|
-
<line num="94" count="
|
|
110
|
-
<line num="95" count="
|
|
111
|
-
<line num="96" count="
|
|
112
|
-
<line num="97" count="
|
|
113
|
-
<line num="98" count="
|
|
114
|
-
<line num="99" count="
|
|
115
|
-
<line num="100" count="
|
|
116
|
-
<line num="101" count="
|
|
117
|
-
<line num="102" count="
|
|
118
|
-
<line num="103" count="
|
|
119
|
-
<line num="104" count="
|
|
120
|
-
<line num="105" count="
|
|
121
|
-
<line num="106" count="
|
|
122
|
-
<line num="107" count="
|
|
123
|
-
<line num="108" count="
|
|
124
|
-
<line num="109" count="
|
|
125
|
-
<line num="110" count="
|
|
126
|
-
<line num="111" count="
|
|
127
|
-
<line num="112" count="
|
|
128
|
-
<line num="113" count="
|
|
129
|
-
<line num="114" count="
|
|
130
|
-
<line num="115" count="
|
|
131
|
-
<line num="116" count="
|
|
132
|
-
<line num="117" count="
|
|
133
|
-
<line num="118" count="
|
|
134
|
-
<line num="119" count="
|
|
135
|
-
<line num="120" count="
|
|
136
|
-
<line num="121" count="
|
|
137
|
-
<line num="122" count="
|
|
138
|
-
<line num="123" count="
|
|
139
|
-
<line num="124" count="
|
|
140
|
-
<line num="125" count="
|
|
141
|
-
<line num="126" count="
|
|
142
|
-
<line num="127" count="
|
|
143
|
-
<line num="128" count="
|
|
144
|
-
<line num="129" count="
|
|
145
|
-
<line num="130" count="
|
|
146
|
-
<line num="131" count="
|
|
147
|
-
<line num="132" count="
|
|
148
|
-
<line num="133" count="
|
|
149
|
-
<line num="134" count="
|
|
150
|
-
<line num="135" count="
|
|
151
|
-
<line num="136" count="
|
|
152
|
-
<line num="137" count="
|
|
153
|
-
<line num="138" count="
|
|
154
|
-
<line num="139" count="
|
|
155
|
-
<line num="140" count="
|
|
156
|
-
<line num="141" count="
|
|
157
|
-
<line num="142" count="
|
|
158
|
-
<line num="143" count="
|
|
159
|
-
<line num="144" count="
|
|
160
|
-
<line num="145" count="
|
|
161
|
-
<line num="146" count="
|
|
162
|
-
<line num="147" count="
|
|
163
|
-
<line num="148" count="
|
|
164
|
-
<line num="149" count="
|
|
165
|
-
<line num="150" count="
|
|
32
|
+
<line num="17" count="12" type="stmt"/>
|
|
33
|
+
<line num="18" count="12" type="stmt"/>
|
|
34
|
+
<line num="19" count="12" type="stmt"/>
|
|
35
|
+
<line num="20" count="12" type="stmt"/>
|
|
36
|
+
<line num="21" count="12" type="stmt"/>
|
|
37
|
+
<line num="22" count="12" type="stmt"/>
|
|
38
|
+
<line num="23" count="12" type="stmt"/>
|
|
39
|
+
<line num="24" count="12" type="stmt"/>
|
|
40
|
+
<line num="25" count="12" type="stmt"/>
|
|
41
|
+
<line num="26" count="12" type="stmt"/>
|
|
42
|
+
<line num="27" count="12" type="stmt"/>
|
|
43
|
+
<line num="28" count="12" type="stmt"/>
|
|
44
|
+
<line num="29" count="12" type="stmt"/>
|
|
45
|
+
<line num="30" count="12" type="stmt"/>
|
|
46
|
+
<line num="31" count="12" type="stmt"/>
|
|
47
|
+
<line num="32" count="12" type="stmt"/>
|
|
48
|
+
<line num="33" count="12" type="stmt"/>
|
|
49
|
+
<line num="34" count="12" type="stmt"/>
|
|
50
|
+
<line num="35" count="12" type="stmt"/>
|
|
51
|
+
<line num="36" count="12" type="stmt"/>
|
|
52
|
+
<line num="37" count="12" type="stmt"/>
|
|
53
|
+
<line num="38" count="12" type="stmt"/>
|
|
54
|
+
<line num="39" count="12" type="stmt"/>
|
|
55
|
+
<line num="40" count="12" type="stmt"/>
|
|
56
|
+
<line num="41" count="12" type="stmt"/>
|
|
57
|
+
<line num="42" count="12" type="stmt"/>
|
|
58
|
+
<line num="43" count="12" type="stmt"/>
|
|
59
|
+
<line num="44" count="12" type="stmt"/>
|
|
60
|
+
<line num="45" count="12" type="stmt"/>
|
|
61
|
+
<line num="46" count="12" type="stmt"/>
|
|
62
|
+
<line num="47" count="12" type="stmt"/>
|
|
63
|
+
<line num="48" count="12" type="stmt"/>
|
|
64
|
+
<line num="49" count="12" type="stmt"/>
|
|
65
|
+
<line num="50" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
66
|
+
<line num="51" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
67
|
+
<line num="52" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
68
|
+
<line num="53" count="12" type="stmt"/>
|
|
69
|
+
<line num="54" count="12" type="stmt"/>
|
|
70
|
+
<line num="55" count="12" type="stmt"/>
|
|
71
|
+
<line num="56" count="12" type="stmt"/>
|
|
72
|
+
<line num="57" count="12" type="stmt"/>
|
|
73
|
+
<line num="58" count="12" type="stmt"/>
|
|
74
|
+
<line num="59" count="12" type="stmt"/>
|
|
75
|
+
<line num="60" count="12" type="stmt"/>
|
|
76
|
+
<line num="61" count="12" type="stmt"/>
|
|
77
|
+
<line num="62" count="12" type="stmt"/>
|
|
78
|
+
<line num="63" count="12" type="stmt"/>
|
|
79
|
+
<line num="64" count="12" type="stmt"/>
|
|
80
|
+
<line num="65" count="12" type="stmt"/>
|
|
81
|
+
<line num="66" count="12" type="stmt"/>
|
|
82
|
+
<line num="67" count="12" type="stmt"/>
|
|
83
|
+
<line num="68" count="12" type="stmt"/>
|
|
84
|
+
<line num="69" count="12" type="stmt"/>
|
|
85
|
+
<line num="70" count="12" type="stmt"/>
|
|
86
|
+
<line num="71" count="12" type="stmt"/>
|
|
87
|
+
<line num="72" count="12" type="stmt"/>
|
|
88
|
+
<line num="73" count="12" type="stmt"/>
|
|
89
|
+
<line num="74" count="12" type="stmt"/>
|
|
90
|
+
<line num="75" count="12" type="stmt"/>
|
|
91
|
+
<line num="76" count="12" type="stmt"/>
|
|
92
|
+
<line num="77" count="12" type="stmt"/>
|
|
93
|
+
<line num="78" count="12" type="stmt"/>
|
|
94
|
+
<line num="79" count="12" type="stmt"/>
|
|
95
|
+
<line num="80" count="12" type="stmt"/>
|
|
96
|
+
<line num="81" count="12" type="stmt"/>
|
|
97
|
+
<line num="82" count="12" type="stmt"/>
|
|
98
|
+
<line num="83" count="12" type="stmt"/>
|
|
99
|
+
<line num="84" count="12" type="stmt"/>
|
|
100
|
+
<line num="85" count="12" type="stmt"/>
|
|
101
|
+
<line num="86" count="12" type="stmt"/>
|
|
102
|
+
<line num="87" count="12" type="stmt"/>
|
|
103
|
+
<line num="88" count="12" type="stmt"/>
|
|
104
|
+
<line num="89" count="12" type="stmt"/>
|
|
105
|
+
<line num="90" count="12" type="stmt"/>
|
|
106
|
+
<line num="91" count="12" type="stmt"/>
|
|
107
|
+
<line num="92" count="12" type="stmt"/>
|
|
108
|
+
<line num="93" count="12" type="stmt"/>
|
|
109
|
+
<line num="94" count="12" type="stmt"/>
|
|
110
|
+
<line num="95" count="12" type="stmt"/>
|
|
111
|
+
<line num="96" count="12" type="stmt"/>
|
|
112
|
+
<line num="97" count="12" type="stmt"/>
|
|
113
|
+
<line num="98" count="12" type="stmt"/>
|
|
114
|
+
<line num="99" count="12" type="stmt"/>
|
|
115
|
+
<line num="100" count="12" type="stmt"/>
|
|
116
|
+
<line num="101" count="12" type="stmt"/>
|
|
117
|
+
<line num="102" count="12" type="stmt"/>
|
|
118
|
+
<line num="103" count="12" type="stmt"/>
|
|
119
|
+
<line num="104" count="12" type="stmt"/>
|
|
120
|
+
<line num="105" count="12" type="stmt"/>
|
|
121
|
+
<line num="106" count="12" type="stmt"/>
|
|
122
|
+
<line num="107" count="12" type="stmt"/>
|
|
123
|
+
<line num="108" count="12" type="stmt"/>
|
|
124
|
+
<line num="109" count="12" type="stmt"/>
|
|
125
|
+
<line num="110" count="12" type="stmt"/>
|
|
126
|
+
<line num="111" count="12" type="stmt"/>
|
|
127
|
+
<line num="112" count="12" type="stmt"/>
|
|
128
|
+
<line num="113" count="12" type="stmt"/>
|
|
129
|
+
<line num="114" count="12" type="stmt"/>
|
|
130
|
+
<line num="115" count="12" type="stmt"/>
|
|
131
|
+
<line num="116" count="12" type="stmt"/>
|
|
132
|
+
<line num="117" count="12" type="stmt"/>
|
|
133
|
+
<line num="118" count="12" type="stmt"/>
|
|
134
|
+
<line num="119" count="12" type="stmt"/>
|
|
135
|
+
<line num="120" count="12" type="stmt"/>
|
|
136
|
+
<line num="121" count="12" type="stmt"/>
|
|
137
|
+
<line num="122" count="12" type="stmt"/>
|
|
138
|
+
<line num="123" count="12" type="stmt"/>
|
|
139
|
+
<line num="124" count="12" type="stmt"/>
|
|
140
|
+
<line num="125" count="12" type="stmt"/>
|
|
141
|
+
<line num="126" count="12" type="stmt"/>
|
|
142
|
+
<line num="127" count="12" type="stmt"/>
|
|
143
|
+
<line num="128" count="12" type="stmt"/>
|
|
144
|
+
<line num="129" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
145
|
+
<line num="130" count="11" type="stmt"/>
|
|
146
|
+
<line num="131" count="11" type="stmt"/>
|
|
147
|
+
<line num="132" count="11" type="stmt"/>
|
|
148
|
+
<line num="133" count="11" type="stmt"/>
|
|
149
|
+
<line num="134" count="11" type="stmt"/>
|
|
150
|
+
<line num="135" count="11" type="stmt"/>
|
|
151
|
+
<line num="136" count="11" type="stmt"/>
|
|
152
|
+
<line num="137" count="11" type="stmt"/>
|
|
153
|
+
<line num="138" count="11" type="stmt"/>
|
|
154
|
+
<line num="139" count="11" type="stmt"/>
|
|
155
|
+
<line num="140" count="11" type="stmt"/>
|
|
156
|
+
<line num="141" count="11" type="stmt"/>
|
|
157
|
+
<line num="142" count="11" type="stmt"/>
|
|
158
|
+
<line num="143" count="11" type="stmt"/>
|
|
159
|
+
<line num="144" count="11" type="stmt"/>
|
|
160
|
+
<line num="145" count="11" type="stmt"/>
|
|
161
|
+
<line num="146" count="11" type="stmt"/>
|
|
162
|
+
<line num="147" count="11" type="stmt"/>
|
|
163
|
+
<line num="148" count="11" type="stmt"/>
|
|
164
|
+
<line num="149" count="11" type="stmt"/>
|
|
165
|
+
<line num="150" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
166
166
|
<line num="151" count="1" type="stmt"/>
|
|
167
167
|
<line num="152" count="1" type="stmt"/>
|
|
168
168
|
<line num="153" count="1" type="stmt"/>
|
|
@@ -174,34 +174,36 @@
|
|
|
174
174
|
<line num="159" count="1" type="stmt"/>
|
|
175
175
|
<line num="160" count="1" type="stmt"/>
|
|
176
176
|
<line num="161" count="1" type="stmt"/>
|
|
177
|
-
<line num="162" count="
|
|
178
|
-
<line num="163" count="
|
|
179
|
-
<line num="164" count="
|
|
180
|
-
<line num="165" count="
|
|
181
|
-
<line num="166" count="
|
|
182
|
-
<line num="167" count="
|
|
183
|
-
<line num="168" count="
|
|
184
|
-
<line num="169" count="
|
|
185
|
-
<line num="170" count="
|
|
186
|
-
<line num="171" count="
|
|
187
|
-
<line num="172" count="
|
|
188
|
-
<line num="173" count="
|
|
189
|
-
<line num="174" count="
|
|
190
|
-
<line num="175" count="
|
|
191
|
-
<line num="176" count="
|
|
192
|
-
<line num="177" count="
|
|
193
|
-
<line num="178" count="
|
|
194
|
-
<line num="179" count="
|
|
195
|
-
<line num="180" count="
|
|
196
|
-
<line num="181" count="
|
|
177
|
+
<line num="162" count="1" type="stmt"/>
|
|
178
|
+
<line num="163" count="1" type="stmt"/>
|
|
179
|
+
<line num="164" count="11" type="stmt"/>
|
|
180
|
+
<line num="165" count="11" type="cond" truecount="0" falsecount="1"/>
|
|
181
|
+
<line num="166" count="0" type="stmt"/>
|
|
182
|
+
<line num="167" count="0" type="stmt"/>
|
|
183
|
+
<line num="168" count="11" type="stmt"/>
|
|
184
|
+
<line num="169" count="11" type="stmt"/>
|
|
185
|
+
<line num="170" count="11" type="stmt"/>
|
|
186
|
+
<line num="171" count="11" type="stmt"/>
|
|
187
|
+
<line num="172" count="11" type="stmt"/>
|
|
188
|
+
<line num="173" count="11" type="stmt"/>
|
|
189
|
+
<line num="174" count="11" type="stmt"/>
|
|
190
|
+
<line num="175" count="11" type="stmt"/>
|
|
191
|
+
<line num="176" count="11" type="stmt"/>
|
|
192
|
+
<line num="177" count="11" type="stmt"/>
|
|
193
|
+
<line num="178" count="11" type="stmt"/>
|
|
194
|
+
<line num="179" count="11" type="stmt"/>
|
|
195
|
+
<line num="180" count="11" type="stmt"/>
|
|
196
|
+
<line num="181" count="11" type="stmt"/>
|
|
197
197
|
<line num="182" count="11" type="stmt"/>
|
|
198
198
|
<line num="183" count="11" type="stmt"/>
|
|
199
|
-
<line num="184" count="
|
|
200
|
-
<line num="185" count="
|
|
201
|
-
<line num="186" count="
|
|
199
|
+
<line num="184" count="12" type="stmt"/>
|
|
200
|
+
<line num="185" count="12" type="stmt"/>
|
|
201
|
+
<line num="186" count="12" type="stmt"/>
|
|
202
202
|
<line num="187" count="1" type="stmt"/>
|
|
203
203
|
<line num="188" count="1" type="stmt"/>
|
|
204
204
|
<line num="189" count="1" type="stmt"/>
|
|
205
|
+
<line num="190" count="1" type="stmt"/>
|
|
206
|
+
<line num="191" count="1" type="stmt"/>
|
|
205
207
|
</file>
|
|
206
208
|
</project>
|
|
207
209
|
</coverage>
|