@ttoss/cloud-auth 0.6.3 → 0.7.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 +15 -15
- package/CHANGELOG.md +10 -0
- package/coverage/clover.xml +281 -164
- package/coverage/coverage-final.json +1 -1
- package/coverage/lcov-report/config.ts.html +1 -1
- package/coverage/lcov-report/index.html +15 -15
- package/coverage/lcov-report/index.ts.html +1 -1
- package/coverage/lcov-report/template.ts.html +541 -190
- package/coverage/lcov.info +291 -171
- package/dist/esm/index.js +123 -13
- package/dist/index.d.ts +17 -20
- package/dist/index.js +123 -13
- package/package.json +3 -3
- package/src/template.ts +154 -37
- package/tests/unit/template.test.ts +49 -38
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[
|
|
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[32m8.71 KB[39m
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 40ms
|
|
13
|
+
[32mESM[39m [1mdist/esm/index.js [22m[32m7.64 KB[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 41ms
|
|
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 11118ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m1.56 KB[39m
|
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
warning package.json: No license field
|
|
2
2
|
$ jest
|
|
3
3
|
PASS tests/unit/template.test.ts
|
|
4
|
-
✓ do not add schema if not provided (
|
|
5
|
-
✓ add schema if provided (
|
|
6
|
-
✓ should have autoVerifiedAttributes equal email by default
|
|
7
|
-
✓
|
|
8
|
-
✓ should have autoVerifiedAttributes undefined:
|
|
4
|
+
✓ do not add schema if not provided (5 ms)
|
|
5
|
+
✓ add schema if provided (4 ms)
|
|
6
|
+
✓ should have autoVerifiedAttributes equal email by default
|
|
7
|
+
✓ default usernameAttributes should be email
|
|
8
|
+
✓ should have autoVerifiedAttributes undefined: [] (1 ms)
|
|
9
|
+
✓ should have autoVerifiedAttributes undefined: null
|
|
9
10
|
✓ should have autoVerifiedAttributes undefined: false
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
✓ default usernameAttributes should be email (1 ms)
|
|
11
|
+
identity pool
|
|
12
|
+
✓ should not have identity pool by default or false: false (1 ms)
|
|
13
|
+
✓ should not have identity pool by default or false: undefined
|
|
14
|
+
✓ should have identity pool if false (1 ms)
|
|
15
|
+
✓ should have identity pool role attachment
|
|
16
16
|
|
|
17
17
|
-------------|---------|----------|---------|---------|-------------------
|
|
18
18
|
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
|
|
19
19
|
-------------|---------|----------|---------|---------|-------------------
|
|
20
|
-
All files |
|
|
20
|
+
All files | 97.74 | 70.58 | 100 | 97.74 |
|
|
21
21
|
config.ts | 100 | 100 | 100 | 100 |
|
|
22
22
|
index.ts | 100 | 57.14 | 100 | 100 | 1
|
|
23
|
-
template.ts |
|
|
23
|
+
template.ts | 97.72 | 80 | 100 | 97.72 | 138-142,283-284
|
|
24
24
|
-------------|---------|----------|---------|---------|-------------------
|
|
25
25
|
Test Suites: 1 passed, 1 total
|
|
26
|
-
Tests:
|
|
26
|
+
Tests: 11 passed, 11 total
|
|
27
27
|
Snapshots: 0 total
|
|
28
|
-
Time:
|
|
28
|
+
Time: 4.027 s
|
|
29
29
|
Ran all test suites.
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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.7.0](https://github.com/ttoss/ttoss/compare/@ttoss/cloud-auth@0.6.4...@ttoss/cloud-auth@0.7.0) (2023-03-05)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- improve appsync api ([#225](https://github.com/ttoss/ttoss/issues/225)) ([ded9624](https://github.com/ttoss/ttoss/commit/ded96245b181e546e1bb66a612d1e6cb0768b1e3))
|
|
11
|
+
|
|
12
|
+
## [0.6.4](https://github.com/ttoss/ttoss/compare/@ttoss/cloud-auth@0.6.3...@ttoss/cloud-auth@0.6.4) (2023-02-26)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @ttoss/cloud-auth
|
|
15
|
+
|
|
6
16
|
## [0.6.3](https://github.com/ttoss/ttoss/compare/@ttoss/cloud-auth@0.6.2...@ttoss/cloud-auth@0.6.3) (2023-02-23)
|
|
7
17
|
|
|
8
18
|
### Bug Fixes
|
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="1677982036655" clover="3.2.0">
|
|
3
|
+
<project timestamp="1677982036662" name="All files">
|
|
4
|
+
<metrics statements="311" coveredstatements="304" conditionals="17" coveredconditionals="12" methods="1" coveredmethods="1" elements="329" coveredelements="317" complexity="0" loc="311" ncloc="311" 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="308" coveredstatements="301" conditionals="10" coveredconditionals="8" 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"/>
|
|
@@ -28,141 +28,141 @@
|
|
|
28
28
|
<line num="13" count="1" type="stmt"/>
|
|
29
29
|
<line num="14" count="1" type="stmt"/>
|
|
30
30
|
<line num="15" count="1" type="stmt"/>
|
|
31
|
-
<line num="16" count="1" type="
|
|
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="
|
|
31
|
+
<line num="16" count="1" type="stmt"/>
|
|
32
|
+
<line num="17" count="1" type="stmt"/>
|
|
33
|
+
<line num="18" count="1" type="stmt"/>
|
|
34
|
+
<line num="19" count="1" type="stmt"/>
|
|
35
|
+
<line num="20" count="1" type="stmt"/>
|
|
36
|
+
<line num="21" count="1" type="stmt"/>
|
|
37
|
+
<line num="22" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
38
|
+
<line num="23" count="11" type="stmt"/>
|
|
39
|
+
<line num="24" count="11" type="stmt"/>
|
|
40
|
+
<line num="25" count="11" type="stmt"/>
|
|
41
|
+
<line num="26" count="11" type="stmt"/>
|
|
42
|
+
<line num="27" count="11" type="stmt"/>
|
|
43
|
+
<line num="28" count="11" type="stmt"/>
|
|
44
|
+
<line num="29" count="11" type="stmt"/>
|
|
45
|
+
<line num="30" count="11" type="stmt"/>
|
|
46
|
+
<line num="31" count="11" type="stmt"/>
|
|
47
|
+
<line num="32" count="11" type="stmt"/>
|
|
48
|
+
<line num="33" count="11" type="stmt"/>
|
|
49
|
+
<line num="34" count="11" type="stmt"/>
|
|
50
|
+
<line num="35" count="11" type="stmt"/>
|
|
51
|
+
<line num="36" count="11" type="stmt"/>
|
|
52
|
+
<line num="37" count="11" type="stmt"/>
|
|
53
|
+
<line num="38" count="11" type="stmt"/>
|
|
54
|
+
<line num="39" count="11" type="stmt"/>
|
|
55
|
+
<line num="40" count="11" type="stmt"/>
|
|
56
|
+
<line num="41" count="11" type="stmt"/>
|
|
57
|
+
<line num="42" count="11" type="stmt"/>
|
|
58
|
+
<line num="43" count="11" type="stmt"/>
|
|
59
|
+
<line num="44" count="11" type="stmt"/>
|
|
60
|
+
<line num="45" count="11" type="stmt"/>
|
|
61
|
+
<line num="46" count="11" type="stmt"/>
|
|
62
|
+
<line num="47" count="11" type="stmt"/>
|
|
63
|
+
<line num="48" count="11" type="stmt"/>
|
|
64
|
+
<line num="49" count="11" type="stmt"/>
|
|
65
|
+
<line num="50" count="11" type="stmt"/>
|
|
66
|
+
<line num="51" count="11" type="stmt"/>
|
|
67
|
+
<line num="52" count="11" type="stmt"/>
|
|
68
|
+
<line num="53" count="11" type="stmt"/>
|
|
69
|
+
<line num="54" count="11" type="stmt"/>
|
|
70
|
+
<line num="55" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
71
|
+
<line num="56" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
72
|
+
<line num="57" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
73
|
+
<line num="58" count="11" type="stmt"/>
|
|
74
|
+
<line num="59" count="11" type="stmt"/>
|
|
75
|
+
<line num="60" count="11" type="stmt"/>
|
|
76
|
+
<line num="61" count="11" type="stmt"/>
|
|
77
|
+
<line num="62" count="11" type="stmt"/>
|
|
78
|
+
<line num="63" count="11" type="stmt"/>
|
|
79
|
+
<line num="64" count="11" type="stmt"/>
|
|
80
|
+
<line num="65" count="11" type="stmt"/>
|
|
81
|
+
<line num="66" count="11" type="stmt"/>
|
|
82
|
+
<line num="67" count="11" type="stmt"/>
|
|
83
|
+
<line num="68" count="11" type="stmt"/>
|
|
84
|
+
<line num="69" count="11" type="stmt"/>
|
|
85
|
+
<line num="70" count="11" type="stmt"/>
|
|
86
|
+
<line num="71" count="11" type="stmt"/>
|
|
87
|
+
<line num="72" count="11" type="stmt"/>
|
|
88
|
+
<line num="73" count="11" type="stmt"/>
|
|
89
|
+
<line num="74" count="11" type="stmt"/>
|
|
90
|
+
<line num="75" count="11" type="stmt"/>
|
|
91
|
+
<line num="76" count="11" type="stmt"/>
|
|
92
|
+
<line num="77" count="11" type="stmt"/>
|
|
93
|
+
<line num="78" count="11" type="stmt"/>
|
|
94
|
+
<line num="79" count="11" type="stmt"/>
|
|
95
|
+
<line num="80" count="11" type="stmt"/>
|
|
96
|
+
<line num="81" count="11" type="stmt"/>
|
|
97
|
+
<line num="82" count="11" type="stmt"/>
|
|
98
|
+
<line num="83" count="11" type="stmt"/>
|
|
99
|
+
<line num="84" count="11" type="stmt"/>
|
|
100
|
+
<line num="85" count="11" type="stmt"/>
|
|
101
|
+
<line num="86" count="11" type="stmt"/>
|
|
102
|
+
<line num="87" count="11" type="stmt"/>
|
|
103
|
+
<line num="88" count="11" type="stmt"/>
|
|
104
|
+
<line num="89" count="11" type="stmt"/>
|
|
105
|
+
<line num="90" count="11" type="stmt"/>
|
|
106
|
+
<line num="91" count="11" type="stmt"/>
|
|
107
|
+
<line num="92" count="11" type="stmt"/>
|
|
108
|
+
<line num="93" count="11" type="stmt"/>
|
|
109
|
+
<line num="94" count="11" type="stmt"/>
|
|
110
|
+
<line num="95" count="11" type="stmt"/>
|
|
111
|
+
<line num="96" count="11" type="stmt"/>
|
|
112
|
+
<line num="97" count="11" type="stmt"/>
|
|
113
|
+
<line num="98" count="11" type="stmt"/>
|
|
114
|
+
<line num="99" count="11" type="stmt"/>
|
|
115
|
+
<line num="100" count="11" type="stmt"/>
|
|
116
|
+
<line num="101" count="11" type="stmt"/>
|
|
117
|
+
<line num="102" count="11" type="stmt"/>
|
|
118
|
+
<line num="103" count="11" type="stmt"/>
|
|
119
|
+
<line num="104" count="11" type="stmt"/>
|
|
120
|
+
<line num="105" count="11" type="stmt"/>
|
|
121
|
+
<line num="106" count="11" type="stmt"/>
|
|
122
|
+
<line num="107" count="11" type="stmt"/>
|
|
123
|
+
<line num="108" count="11" type="stmt"/>
|
|
124
|
+
<line num="109" count="11" type="stmt"/>
|
|
125
|
+
<line num="110" count="11" type="stmt"/>
|
|
126
|
+
<line num="111" count="11" type="stmt"/>
|
|
127
|
+
<line num="112" count="11" type="stmt"/>
|
|
128
|
+
<line num="113" count="11" type="stmt"/>
|
|
129
|
+
<line num="114" count="11" type="stmt"/>
|
|
130
|
+
<line num="115" count="11" type="stmt"/>
|
|
131
|
+
<line num="116" count="11" type="stmt"/>
|
|
132
|
+
<line num="117" count="11" type="stmt"/>
|
|
133
|
+
<line num="118" count="11" type="stmt"/>
|
|
134
|
+
<line num="119" count="11" type="stmt"/>
|
|
135
|
+
<line num="120" count="11" type="stmt"/>
|
|
136
|
+
<line num="121" count="11" type="stmt"/>
|
|
137
|
+
<line num="122" count="11" type="stmt"/>
|
|
138
|
+
<line num="123" count="11" type="stmt"/>
|
|
139
|
+
<line num="124" count="11" type="stmt"/>
|
|
140
|
+
<line num="125" count="11" type="stmt"/>
|
|
141
|
+
<line num="126" count="11" type="stmt"/>
|
|
142
|
+
<line num="127" count="11" type="stmt"/>
|
|
143
|
+
<line num="128" count="11" type="stmt"/>
|
|
144
|
+
<line num="129" count="11" type="stmt"/>
|
|
145
145
|
<line num="130" count="11" type="stmt"/>
|
|
146
146
|
<line num="131" count="11" type="stmt"/>
|
|
147
147
|
<line num="132" count="11" type="stmt"/>
|
|
148
|
-
<line num="133" count="11" type="
|
|
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="
|
|
148
|
+
<line num="133" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
149
|
+
<line num="134" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
150
|
+
<line num="135" count="1" type="stmt"/>
|
|
151
|
+
<line num="136" count="1" type="stmt"/>
|
|
152
|
+
<line num="137" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
153
|
+
<line num="138" count="0" type="stmt"/>
|
|
154
|
+
<line num="139" count="0" type="stmt"/>
|
|
155
|
+
<line num="140" count="0" type="stmt"/>
|
|
156
|
+
<line num="141" count="0" type="stmt"/>
|
|
157
|
+
<line num="142" count="0" type="stmt"/>
|
|
158
|
+
<line num="143" count="1" type="stmt"/>
|
|
159
|
+
<line num="144" count="1" type="stmt"/>
|
|
160
|
+
<line num="145" count="1" type="stmt"/>
|
|
161
|
+
<line num="146" count="1" type="stmt"/>
|
|
162
|
+
<line num="147" count="1" type="stmt"/>
|
|
163
|
+
<line num="148" count="1" type="stmt"/>
|
|
164
|
+
<line num="149" count="1" type="stmt"/>
|
|
165
|
+
<line num="150" count="1" type="stmt"/>
|
|
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"/>
|
|
@@ -176,34 +176,151 @@
|
|
|
176
176
|
<line num="161" count="1" type="stmt"/>
|
|
177
177
|
<line num="162" count="1" type="stmt"/>
|
|
178
178
|
<line num="163" count="1" type="stmt"/>
|
|
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="
|
|
197
|
-
<line num="182" count="
|
|
198
|
-
<line num="183" count="
|
|
199
|
-
<line num="184" count="
|
|
200
|
-
<line num="185" count="
|
|
201
|
-
<line num="186" count="
|
|
202
|
-
<line num="187" count="
|
|
203
|
-
<line num="188" count="
|
|
204
|
-
<line num="189" count="
|
|
205
|
-
<line num="190" count="
|
|
206
|
-
<line num="191" count="
|
|
179
|
+
<line num="164" count="1" type="stmt"/>
|
|
180
|
+
<line num="165" count="1" type="stmt"/>
|
|
181
|
+
<line num="166" count="11" type="stmt"/>
|
|
182
|
+
<line num="167" count="11" type="cond" truecount="2" falsecount="0"/>
|
|
183
|
+
<line num="168" count="2" type="stmt"/>
|
|
184
|
+
<line num="169" count="2" type="stmt"/>
|
|
185
|
+
<line num="170" count="2" type="stmt"/>
|
|
186
|
+
<line num="171" count="2" type="stmt"/>
|
|
187
|
+
<line num="172" count="2" type="stmt"/>
|
|
188
|
+
<line num="173" count="2" type="stmt"/>
|
|
189
|
+
<line num="174" count="2" type="stmt"/>
|
|
190
|
+
<line num="175" count="2" type="stmt"/>
|
|
191
|
+
<line num="176" count="2" type="stmt"/>
|
|
192
|
+
<line num="177" count="2" type="stmt"/>
|
|
193
|
+
<line num="178" count="2" type="stmt"/>
|
|
194
|
+
<line num="179" count="2" type="stmt"/>
|
|
195
|
+
<line num="180" count="2" type="stmt"/>
|
|
196
|
+
<line num="181" count="2" type="stmt"/>
|
|
197
|
+
<line num="182" count="2" type="stmt"/>
|
|
198
|
+
<line num="183" count="2" type="stmt"/>
|
|
199
|
+
<line num="184" count="2" type="stmt"/>
|
|
200
|
+
<line num="185" count="2" type="stmt"/>
|
|
201
|
+
<line num="186" count="2" type="stmt"/>
|
|
202
|
+
<line num="187" count="2" type="stmt"/>
|
|
203
|
+
<line num="188" count="2" type="stmt"/>
|
|
204
|
+
<line num="189" count="2" type="stmt"/>
|
|
205
|
+
<line num="190" count="2" type="stmt"/>
|
|
206
|
+
<line num="191" count="2" type="stmt"/>
|
|
207
|
+
<line num="192" count="2" type="stmt"/>
|
|
208
|
+
<line num="193" count="2" type="stmt"/>
|
|
209
|
+
<line num="194" count="2" type="stmt"/>
|
|
210
|
+
<line num="195" count="2" type="stmt"/>
|
|
211
|
+
<line num="196" count="2" type="stmt"/>
|
|
212
|
+
<line num="197" count="2" type="stmt"/>
|
|
213
|
+
<line num="198" count="2" type="stmt"/>
|
|
214
|
+
<line num="199" count="2" type="stmt"/>
|
|
215
|
+
<line num="200" count="2" type="stmt"/>
|
|
216
|
+
<line num="201" count="2" type="stmt"/>
|
|
217
|
+
<line num="202" count="2" type="stmt"/>
|
|
218
|
+
<line num="203" count="2" type="stmt"/>
|
|
219
|
+
<line num="204" count="2" type="stmt"/>
|
|
220
|
+
<line num="205" count="2" type="stmt"/>
|
|
221
|
+
<line num="206" count="2" type="stmt"/>
|
|
222
|
+
<line num="207" count="2" type="stmt"/>
|
|
223
|
+
<line num="208" count="2" type="stmt"/>
|
|
224
|
+
<line num="209" count="2" type="stmt"/>
|
|
225
|
+
<line num="210" count="2" type="stmt"/>
|
|
226
|
+
<line num="211" count="2" type="stmt"/>
|
|
227
|
+
<line num="212" count="2" type="stmt"/>
|
|
228
|
+
<line num="213" count="2" type="stmt"/>
|
|
229
|
+
<line num="214" count="2" type="stmt"/>
|
|
230
|
+
<line num="215" count="2" type="stmt"/>
|
|
231
|
+
<line num="216" count="2" type="stmt"/>
|
|
232
|
+
<line num="217" count="2" type="stmt"/>
|
|
233
|
+
<line num="218" count="2" type="stmt"/>
|
|
234
|
+
<line num="219" count="2" type="stmt"/>
|
|
235
|
+
<line num="220" count="2" type="stmt"/>
|
|
236
|
+
<line num="221" count="2" type="stmt"/>
|
|
237
|
+
<line num="222" count="2" type="stmt"/>
|
|
238
|
+
<line num="223" count="2" type="stmt"/>
|
|
239
|
+
<line num="224" count="2" type="stmt"/>
|
|
240
|
+
<line num="225" count="2" type="stmt"/>
|
|
241
|
+
<line num="226" count="2" type="stmt"/>
|
|
242
|
+
<line num="227" count="2" type="stmt"/>
|
|
243
|
+
<line num="228" count="2" type="stmt"/>
|
|
244
|
+
<line num="229" count="2" type="stmt"/>
|
|
245
|
+
<line num="230" count="2" type="stmt"/>
|
|
246
|
+
<line num="231" count="2" type="stmt"/>
|
|
247
|
+
<line num="232" count="2" type="stmt"/>
|
|
248
|
+
<line num="233" count="2" type="stmt"/>
|
|
249
|
+
<line num="234" count="2" type="stmt"/>
|
|
250
|
+
<line num="235" count="2" type="stmt"/>
|
|
251
|
+
<line num="236" count="2" type="stmt"/>
|
|
252
|
+
<line num="237" count="2" type="stmt"/>
|
|
253
|
+
<line num="238" count="2" type="stmt"/>
|
|
254
|
+
<line num="239" count="2" type="stmt"/>
|
|
255
|
+
<line num="240" count="2" type="stmt"/>
|
|
256
|
+
<line num="241" count="2" type="stmt"/>
|
|
257
|
+
<line num="242" count="2" type="stmt"/>
|
|
258
|
+
<line num="243" count="2" type="stmt"/>
|
|
259
|
+
<line num="244" count="2" type="stmt"/>
|
|
260
|
+
<line num="245" count="2" type="stmt"/>
|
|
261
|
+
<line num="246" count="2" type="stmt"/>
|
|
262
|
+
<line num="247" count="2" type="stmt"/>
|
|
263
|
+
<line num="248" count="2" type="stmt"/>
|
|
264
|
+
<line num="249" count="2" type="stmt"/>
|
|
265
|
+
<line num="250" count="2" type="stmt"/>
|
|
266
|
+
<line num="251" count="2" type="stmt"/>
|
|
267
|
+
<line num="252" count="2" type="stmt"/>
|
|
268
|
+
<line num="253" count="2" type="stmt"/>
|
|
269
|
+
<line num="254" count="2" type="stmt"/>
|
|
270
|
+
<line num="255" count="2" type="stmt"/>
|
|
271
|
+
<line num="256" count="2" type="stmt"/>
|
|
272
|
+
<line num="257" count="2" type="stmt"/>
|
|
273
|
+
<line num="258" count="2" type="stmt"/>
|
|
274
|
+
<line num="259" count="2" type="stmt"/>
|
|
275
|
+
<line num="260" count="2" type="stmt"/>
|
|
276
|
+
<line num="261" count="2" type="stmt"/>
|
|
277
|
+
<line num="262" count="2" type="stmt"/>
|
|
278
|
+
<line num="263" count="2" type="stmt"/>
|
|
279
|
+
<line num="264" count="2" type="stmt"/>
|
|
280
|
+
<line num="265" count="2" type="stmt"/>
|
|
281
|
+
<line num="266" count="2" type="stmt"/>
|
|
282
|
+
<line num="267" count="2" type="stmt"/>
|
|
283
|
+
<line num="268" count="2" type="stmt"/>
|
|
284
|
+
<line num="269" count="2" type="stmt"/>
|
|
285
|
+
<line num="270" count="2" type="stmt"/>
|
|
286
|
+
<line num="271" count="2" type="stmt"/>
|
|
287
|
+
<line num="272" count="2" type="stmt"/>
|
|
288
|
+
<line num="273" count="2" type="stmt"/>
|
|
289
|
+
<line num="274" count="2" type="stmt"/>
|
|
290
|
+
<line num="275" count="2" type="stmt"/>
|
|
291
|
+
<line num="276" count="2" type="stmt"/>
|
|
292
|
+
<line num="277" count="2" type="stmt"/>
|
|
293
|
+
<line num="278" count="2" type="stmt"/>
|
|
294
|
+
<line num="279" count="2" type="stmt"/>
|
|
295
|
+
<line num="280" count="2" type="stmt"/>
|
|
296
|
+
<line num="281" count="2" type="stmt"/>
|
|
297
|
+
<line num="282" count="2" type="cond" truecount="0" falsecount="1"/>
|
|
298
|
+
<line num="283" count="0" type="stmt"/>
|
|
299
|
+
<line num="284" count="0" type="stmt"/>
|
|
300
|
+
<line num="285" count="2" type="stmt"/>
|
|
301
|
+
<line num="286" count="2" type="stmt"/>
|
|
302
|
+
<line num="287" count="2" type="stmt"/>
|
|
303
|
+
<line num="288" count="2" type="stmt"/>
|
|
304
|
+
<line num="289" count="2" type="stmt"/>
|
|
305
|
+
<line num="290" count="2" type="stmt"/>
|
|
306
|
+
<line num="291" count="2" type="stmt"/>
|
|
307
|
+
<line num="292" count="2" type="stmt"/>
|
|
308
|
+
<line num="293" count="2" type="stmt"/>
|
|
309
|
+
<line num="294" count="2" type="stmt"/>
|
|
310
|
+
<line num="295" count="2" type="stmt"/>
|
|
311
|
+
<line num="296" count="2" type="stmt"/>
|
|
312
|
+
<line num="297" count="2" type="stmt"/>
|
|
313
|
+
<line num="298" count="2" type="stmt"/>
|
|
314
|
+
<line num="299" count="2" type="stmt"/>
|
|
315
|
+
<line num="300" count="2" type="stmt"/>
|
|
316
|
+
<line num="301" count="11" type="stmt"/>
|
|
317
|
+
<line num="302" count="11" type="stmt"/>
|
|
318
|
+
<line num="303" count="11" type="stmt"/>
|
|
319
|
+
<line num="304" count="1" type="stmt"/>
|
|
320
|
+
<line num="305" count="1" type="stmt"/>
|
|
321
|
+
<line num="306" count="1" type="stmt"/>
|
|
322
|
+
<line num="307" count="1" type="stmt"/>
|
|
323
|
+
<line num="308" count="1" type="stmt"/>
|
|
207
324
|
</file>
|
|
208
325
|
</project>
|
|
209
326
|
</coverage>
|