@rnx-kit/cli 0.16.8 → 0.16.10

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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Change Log - @rnx-kit/cli
2
2
 
3
+ ## 0.16.10
4
+
5
+ ### Patch Changes
6
+
7
+ - 0b842c78: Fix `rnx-test` command not accepting any arguments when using Jest 29.2+
8
+
9
+ ## 0.16.9
10
+
11
+ ### Patch Changes
12
+
13
+ - 3db06445: Refactor `copy-assets` command to rely less on async fs functions
14
+ - 828ca15e: Add Kotlin plugin to `copy-assets` command
15
+
3
16
  ## 0.16.8
4
17
 
5
18
  ### Patch Changes
package/README.md CHANGED
@@ -19,12 +19,17 @@ libraries for package configuration and Metro plugins.
19
19
 
20
20
  ### Example Commands
21
21
 
22
- ```bash
22
+ ```sh
23
23
  yarn react-native rnx-bundle
24
24
  ```
25
25
 
26
- ```bash
27
- yarn react-native rnx-bundle --entry-file src/index.ts --bundle-output main.jsbundle --platform ios --dev false --minify true
26
+ ```sh
27
+ yarn react-native rnx-bundle \
28
+ --entry-file src/index.ts \
29
+ --bundle-output main.jsbundle \
30
+ --platform ios \
31
+ --dev false \
32
+ --minify true
28
33
  ```
29
34
 
30
35
  ### Example Configuration (Optional)
@@ -112,11 +117,11 @@ libraries for package configuration and Metro plugins.
112
117
 
113
118
  ### Example Commands
114
119
 
115
- ```bash
120
+ ```sh
116
121
  yarn react-native rnx-start
117
122
  ```
118
123
 
119
- ```bash
124
+ ```sh
120
125
  yarn react-native rnx-start --host localhost --port 8812
121
126
  ```
122
127
 
@@ -186,7 +191,7 @@ Generate a 3rd-party notice, which is an aggregation of all the LICENSE files
186
191
  from your package's dependencies.
187
192
 
188
193
  > NOTE: A 3rd-party notice is a **legal document**. You are solely responsble
189
- > for its content, even if you use `@rnx-kit` to assist you in generating it.
194
+ > for its content, even if you use this command to assist you in generating it.
190
195
  > You should consult with an attorney to ensure your notice meets all legal
191
196
  > requirements.
192
197
 
@@ -207,6 +212,10 @@ $ yarn react-native rnx-write-third-party-notices [options]
207
212
 
208
213
  ## Clean a React Native Project
209
214
 
215
+ > Deprecated: This command was upstreamed to `@react-native-community/cli`. As
216
+ > of [v8.0](https://github.com/react-native-community/cli/releases/tag/v8.0.0),
217
+ > you can use `react-native clean` instead.
218
+
210
219
  Cleans your project by removing React Native related caches and modules.
211
220
 
212
221
  ```
@@ -1,161 +1,154 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1682078451926" clover="3.2.0">
3
- <project timestamp="1682078451926" name="All files">
4
- <metrics statements="249" coveredstatements="149" conditionals="166" coveredconditionals="90" methods="31" coveredmethods="25" elements="446" coveredelements="264" complexity="0" loc="249" ncloc="249" packages="2" files="6" classes="6"/>
2
+ <coverage generated="1690986485531" clover="3.2.0">
3
+ <project timestamp="1690986485531" name="All files">
4
+ <metrics statements="279" coveredstatements="156" conditionals="174" coveredconditionals="91" methods="35" coveredmethods="27" elements="488" coveredelements="274" complexity="0" loc="279" ncloc="279" packages="2" files="7" classes="7"/>
5
5
  <package name="src">
6
- <metrics statements="218" coveredstatements="118" conditionals="143" coveredconditionals="70" methods="23" coveredmethods="17"/>
6
+ <metrics statements="248" coveredstatements="125" conditionals="151" coveredconditionals="71" methods="27" coveredmethods="19"/>
7
7
  <file name="copy-assets.ts" path="/home/runner/work/rnx-kit/rnx-kit/packages/cli/src/copy-assets.ts">
8
- <metrics statements="150" coveredstatements="81" conditionals="101" coveredconditionals="49" methods="17" coveredmethods="13"/>
9
- <line num="60" count="2" type="stmt"/>
10
- <line num="70" count="0" type="cond" truecount="0" falsecount="2"/>
11
- <line num="71" count="0" type="stmt"/>
12
- <line num="72" count="0" type="stmt"/>
13
- <line num="77" count="4" type="cond" truecount="2" falsecount="0"/>
14
- <line num="78" count="3" type="stmt"/>
15
- <line num="80" count="1" type="cond" truecount="1" falsecount="1"/>
16
- <line num="81" count="0" type="stmt"/>
17
- <line num="83" count="1" type="stmt"/>
18
- <line num="87" count="4" type="stmt"/>
19
- <line num="93" count="0" type="cond" truecount="0" falsecount="3"/>
20
- <line num="97" count="9" type="stmt"/>
21
- <line num="98" count="9" type="cond" truecount="2" falsecount="0"/>
22
- <line num="99" count="1" type="stmt"/>
23
- <line num="102" count="8" type="stmt"/>
24
- <line num="103" count="8" type="stmt"/>
25
- <line num="111" count="5" type="stmt"/>
26
- <line num="112" count="5" type="cond" truecount="2" falsecount="0"/>
27
- <line num="113" count="1" type="stmt"/>
28
- <line num="116" count="4" type="cond" truecount="2" falsecount="0"/>
29
- <line num="117" count="4" type="cond" truecount="2" falsecount="0"/>
30
- <line num="119" count="4" type="cond" truecount="1" falsecount="2"/>
31
- <line num="121" count="0" type="stmt"/>
32
- <line num="134" count="0" type="stmt"/>
33
- <line num="147" count="4" type="stmt"/>
34
- <line num="148" count="4" type="stmt"/>
35
- <line num="174" count="3" type="stmt"/>
36
- <line num="175" count="3" type="cond" truecount="1" falsecount="1"/>
37
- <line num="176" count="0" type="cond" truecount="0" falsecount="2"/>
38
- <line num="185" count="7" type="cond" truecount="2" falsecount="0"/>
39
- <line num="186" count="1" type="stmt"/>
40
- <line num="189" count="6" type="stmt"/>
41
- <line num="190" count="6" type="stmt"/>
42
- <line num="193" count="6" type="cond" truecount="2" falsecount="0"/>
43
- <line num="194" count="1" type="stmt"/>
44
- <line num="195" count="1" type="stmt"/>
45
- <line num="198" count="5" type="stmt"/>
46
- <line num="203" count="4" type="cond" truecount="4" falsecount="0"/>
47
- <line num="204" count="1" type="stmt"/>
48
- <line num="205" count="1" type="stmt"/>
49
- <line num="208" count="3" type="stmt"/>
50
- <line num="209" count="3" type="stmt"/>
51
- <line num="216" count="3" type="stmt"/>
52
- <line num="217" count="3" type="stmt"/>
8
+ <metrics statements="143" coveredstatements="75" conditionals="99" coveredconditionals="47" methods="15" coveredmethods="11"/>
9
+ <line num="61" count="2" type="stmt"/>
10
+ <line num="72" count="0" type="cond" truecount="0" falsecount="2"/>
11
+ <line num="73" count="0" type="stmt"/>
12
+ <line num="74" count="0" type="stmt"/>
13
+ <line num="79" count="4" type="cond" truecount="2" falsecount="0"/>
14
+ <line num="80" count="3" type="stmt"/>
15
+ <line num="82" count="1" type="cond" truecount="1" falsecount="1"/>
16
+ <line num="83" count="0" type="stmt"/>
17
+ <line num="85" count="1" type="stmt"/>
18
+ <line num="89" count="4" type="stmt"/>
19
+ <line num="95" count="0" type="cond" truecount="0" falsecount="3"/>
20
+ <line num="99" count="9" type="stmt"/>
21
+ <line num="100" count="9" type="cond" truecount="2" falsecount="0"/>
22
+ <line num="101" count="1" type="stmt"/>
23
+ <line num="104" count="8" type="stmt"/>
24
+ <line num="105" count="8" type="stmt"/>
25
+ <line num="113" count="5" type="stmt"/>
26
+ <line num="114" count="5" type="cond" truecount="2" falsecount="0"/>
27
+ <line num="115" count="1" type="stmt"/>
28
+ <line num="118" count="4" type="cond" truecount="2" falsecount="0"/>
29
+ <line num="119" count="4" type="cond" truecount="2" falsecount="0"/>
30
+ <line num="121" count="4" type="cond" truecount="1" falsecount="2"/>
31
+ <line num="123" count="0" type="stmt"/>
32
+ <line num="136" count="0" type="stmt"/>
33
+ <line num="149" count="4" type="stmt"/>
34
+ <line num="150" count="4" type="stmt"/>
35
+ <line num="176" count="3" type="stmt"/>
36
+ <line num="177" count="3" type="cond" truecount="1" falsecount="1"/>
37
+ <line num="178" count="0" type="cond" truecount="0" falsecount="2"/>
38
+ <line num="187" count="7" type="cond" truecount="2" falsecount="0"/>
39
+ <line num="188" count="1" type="stmt"/>
40
+ <line num="191" count="6" type="stmt"/>
41
+ <line num="192" count="6" type="stmt"/>
42
+ <line num="195" count="6" type="cond" truecount="2" falsecount="0"/>
43
+ <line num="196" count="1" type="stmt"/>
44
+ <line num="197" count="1" type="stmt"/>
45
+ <line num="200" count="5" type="stmt"/>
46
+ <line num="205" count="4" type="cond" truecount="4" falsecount="0"/>
47
+ <line num="206" count="1" type="stmt"/>
48
+ <line num="207" count="1" type="stmt"/>
49
+ <line num="210" count="3" type="stmt"/>
50
+ <line num="211" count="3" type="stmt"/>
51
+ <line num="218" count="3" type="stmt"/>
53
52
  <line num="219" count="3" type="stmt"/>
54
53
  <line num="221" count="3" type="stmt"/>
55
- <line num="222" count="3" type="stmt"/>
54
+ <line num="223" count="3" type="stmt"/>
56
55
  <line num="224" count="3" type="stmt"/>
57
- <line num="225" count="3" type="cond" truecount="2" falsecount="0"/>
58
- <line num="226" count="1" type="cond" truecount="1" falsecount="1"/>
59
- <line num="227" count="0" type="stmt"/>
60
- <line num="228" count="0" type="stmt"/>
61
- <line num="233" count="0" type="cond" truecount="0" falsecount="2"/>
62
- <line num="234" count="0" type="cond" truecount="0" falsecount="2"/>
63
- <line num="235" count="0" type="stmt"/>
64
- <line num="236" count="0" type="stmt"/>
65
- <line num="237" count="0" type="cond" truecount="0" falsecount="2"/>
56
+ <line num="226" count="3" type="stmt"/>
57
+ <line num="227" count="3" type="cond" truecount="2" falsecount="0"/>
58
+ <line num="228" count="1" type="cond" truecount="1" falsecount="1"/>
59
+ <line num="229" count="0" type="stmt"/>
60
+ <line num="230" count="0" type="stmt"/>
61
+ <line num="235" count="0" type="cond" truecount="0" falsecount="2"/>
62
+ <line num="236" count="0" type="cond" truecount="0" falsecount="2"/>
63
+ <line num="237" count="0" type="stmt"/>
66
64
  <line num="238" count="0" type="stmt"/>
67
- <line num="245" count="1" type="stmt"/>
68
- <line num="247" count="2" type="stmt"/>
69
- <line num="248" count="2" type="cond" truecount="1" falsecount="1"/>
70
- <line num="249" count="0" type="stmt"/>
71
- <line num="252" count="2" type="stmt"/>
72
- <line num="260" count="2" type="cond" truecount="2" falsecount="0"/>
65
+ <line num="239" count="0" type="cond" truecount="0" falsecount="2"/>
66
+ <line num="240" count="0" type="stmt"/>
67
+ <line num="247" count="1" type="stmt"/>
68
+ <line num="249" count="2" type="stmt"/>
69
+ <line num="250" count="2" type="cond" truecount="1" falsecount="1"/>
70
+ <line num="251" count="0" type="stmt"/>
71
+ <line num="254" count="2" type="stmt"/>
73
72
  <line num="262" count="2" type="cond" truecount="2" falsecount="0"/>
74
- <line num="265" count="2" type="cond" truecount="2" falsecount="0"/>
75
- <line num="268" count="2" type="cond" truecount="2" falsecount="0"/>
76
- <line num="270" count="2" type="stmt"/>
77
- <line num="275" count="2" type="stmt"/>
78
- <line num="307" count="2" type="stmt"/>
79
- <line num="309" count="2" type="stmt"/>
80
- <line num="317" count="2" type="stmt"/>
81
- <line num="318" count="2" type="stmt"/>
82
- <line num="319" count="2" type="stmt"/>
73
+ <line num="264" count="2" type="cond" truecount="2" falsecount="0"/>
74
+ <line num="267" count="2" type="cond" truecount="2" falsecount="0"/>
75
+ <line num="270" count="2" type="cond" truecount="2" falsecount="0"/>
76
+ <line num="273" count="2" type="cond" truecount="2" falsecount="0"/>
77
+ <line num="274" count="2" type="stmt"/>
78
+ <line num="279" count="2" type="stmt"/>
79
+ <line num="313" count="2" type="stmt"/>
80
+ <line num="315" count="2" type="stmt"/>
83
81
  <line num="323" count="2" type="stmt"/>
84
- <line num="326" count="2" type="stmt"/>
85
- <line num="329" count="3" type="stmt"/>
86
- <line num="333" count="10" type="cond" truecount="4" falsecount="0"/>
87
- <line num="334" count="8" type="stmt"/>
88
- <line num="337" count="2" type="stmt"/>
89
- <line num="338" count="2" type="stmt"/>
90
- <line num="340" count="2" type="stmt"/>
91
- <line num="341" count="2" type="stmt"/>
92
- <line num="350" count="4" type="cond" truecount="4" falsecount="0"/>
93
- <line num="351" count="3" type="stmt"/>
94
- <line num="354" count="1" type="stmt"/>
95
- <line num="355" count="1" type="stmt"/>
96
- <line num="357" count="1" type="stmt"/>
97
- <line num="358" count="1" type="stmt"/>
98
- <line num="368" count="5" type="stmt"/>
99
- <line num="373" count="5" type="cond" truecount="2" falsecount="0"/>
100
- <line num="374" count="4" type="stmt"/>
101
- <line num="377" count="5" type="stmt"/>
102
- <line num="384" count="1" type="stmt"/>
103
- <line num="385" count="1" type="stmt"/>
104
- <line num="386" count="1" type="cond" truecount="1" falsecount="1"/>
105
- <line num="387" count="1" type="stmt"/>
106
- <line num="390" count="0" type="stmt"/>
107
- <line num="391" count="0" type="stmt"/>
108
- <line num="393" count="0" type="stmt"/>
109
- <line num="394" count="0" type="stmt"/>
110
- <line num="395" count="0" type="stmt"/>
111
- <line num="398" count="0" type="stmt"/>
112
- <line num="399" count="0" type="cond" truecount="0" falsecount="2"/>
82
+ <line num="324" count="2" type="stmt"/>
83
+ <line num="325" count="2" type="stmt"/>
84
+ <line num="329" count="2" type="stmt"/>
85
+ <line num="332" count="2" type="stmt"/>
86
+ <line num="335" count="3" type="stmt"/>
87
+ <line num="339" count="14" type="cond" truecount="4" falsecount="0"/>
88
+ <line num="340" count="11" type="stmt"/>
89
+ <line num="343" count="3" type="stmt"/>
90
+ <line num="344" count="3" type="stmt"/>
91
+ <line num="345" count="3" type="stmt"/>
92
+ <line num="354" count="5" type="stmt"/>
93
+ <line num="359" count="5" type="cond" truecount="2" falsecount="0"/>
94
+ <line num="360" count="4" type="stmt"/>
95
+ <line num="363" count="5" type="stmt"/>
96
+ <line num="370" count="1" type="stmt"/>
97
+ <line num="371" count="1" type="stmt"/>
98
+ <line num="372" count="1" type="cond" truecount="1" falsecount="1"/>
99
+ <line num="373" count="1" type="stmt"/>
100
+ <line num="376" count="0" type="stmt"/>
101
+ <line num="377" count="0" type="stmt"/>
102
+ <line num="379" count="0" type="stmt"/>
103
+ <line num="380" count="0" type="stmt"/>
104
+ <line num="381" count="0" type="stmt"/>
105
+ <line num="384" count="0" type="stmt"/>
106
+ <line num="385" count="0" type="cond" truecount="0" falsecount="2"/>
107
+ <line num="386" count="0" type="stmt"/>
108
+ <line num="387" count="0" type="cond" truecount="0" falsecount="2"/>
109
+ <line num="388" count="0" type="stmt"/>
110
+ <line num="392" count="0" type="stmt"/>
111
+ <line num="397" count="0" type="stmt"/>
112
+ <line num="398" count="0" type="cond" truecount="0" falsecount="2"/>
113
+ <line num="399" count="0" type="stmt"/>
113
114
  <line num="400" count="0" type="stmt"/>
114
- <line num="401" count="0" type="cond" truecount="0" falsecount="2"/>
115
- <line num="402" count="0" type="stmt"/>
116
- <line num="406" count="0" type="stmt"/>
117
- <line num="411" count="0" type="stmt"/>
118
- <line num="412" count="0" type="cond" truecount="0" falsecount="2"/>
119
- <line num="413" count="0" type="stmt"/>
120
- <line num="414" count="0" type="stmt"/>
121
- <line num="415" count="0" type="stmt"/>
122
- <line num="416" count="0" type="cond" truecount="0" falsecount="4"/>
123
- <line num="417" count="0" type="stmt"/>
124
- <line num="422" count="0" type="stmt"/>
125
- <line num="479" count="0" type="cond" truecount="0" falsecount="2"/>
126
- <line num="480" count="0" type="stmt"/>
127
- <line num="483" count="0" type="stmt"/>
128
- <line num="484" count="0" type="stmt"/>
115
+ <line num="401" count="0" type="stmt"/>
116
+ <line num="402" count="0" type="cond" truecount="0" falsecount="4"/>
117
+ <line num="403" count="0" type="stmt"/>
118
+ <line num="408" count="0" type="stmt"/>
119
+ <line num="465" count="0" type="cond" truecount="0" falsecount="2"/>
120
+ <line num="466" count="0" type="stmt"/>
121
+ <line num="467" count="0" type="stmt"/>
122
+ <line num="468" count="0" type="stmt"/>
123
+ <line num="469" count="0" type="cond" truecount="0" falsecount="2"/>
124
+ <line num="470" count="0" type="stmt"/>
125
+ <line num="473" count="0" type="stmt"/>
126
+ <line num="474" count="0" type="stmt"/>
127
+ <line num="475" count="0" type="cond" truecount="0" falsecount="2"/>
128
+ <line num="476" count="0" type="stmt"/>
129
+ <line num="479" count="0" type="stmt"/>
130
+ <line num="480" count="0" type="cond" truecount="0" falsecount="2"/>
131
+ <line num="481" count="0" type="stmt"/>
132
+ <line num="482" count="0" type="stmt"/>
129
133
  <line num="485" count="0" type="stmt"/>
130
- <line num="486" count="0" type="cond" truecount="0" falsecount="2"/>
134
+ <line num="486" count="0" type="cond" truecount="0" falsecount="4"/>
131
135
  <line num="487" count="0" type="stmt"/>
136
+ <line num="488" count="0" type="stmt"/>
132
137
  <line num="490" count="0" type="stmt"/>
133
138
  <line num="491" count="0" type="stmt"/>
134
- <line num="492" count="0" type="cond" truecount="0" falsecount="2"/>
135
- <line num="493" count="0" type="stmt"/>
139
+ <line num="495" count="0" type="cond" truecount="0" falsecount="2"/>
136
140
  <line num="496" count="0" type="stmt"/>
137
- <line num="497" count="0" type="cond" truecount="0" falsecount="2"/>
141
+ <line num="497" count="0" type="stmt"/>
138
142
  <line num="498" count="0" type="stmt"/>
139
143
  <line num="499" count="0" type="stmt"/>
140
- <line num="502" count="0" type="stmt"/>
141
- <line num="503" count="0" type="cond" truecount="0" falsecount="4"/>
142
- <line num="504" count="0" type="stmt"/>
143
- <line num="505" count="0" type="stmt"/>
144
- <line num="507" count="0" type="stmt"/>
144
+ <line num="504" count="0" type="cond" truecount="0" falsecount="2"/>
145
145
  <line num="508" count="0" type="stmt"/>
146
- <line num="512" count="0" type="cond" truecount="0" falsecount="2"/>
147
- <line num="513" count="0" type="stmt"/>
148
- <line num="514" count="0" type="stmt"/>
149
- <line num="515" count="0" type="stmt"/>
150
- <line num="516" count="0" type="stmt"/>
151
- <line num="521" count="0" type="cond" truecount="0" falsecount="2"/>
152
- <line num="525" count="0" type="stmt"/>
153
- <line num="526" count="0" type="stmt"/>
154
- <line num="529" count="0" type="stmt"/>
155
- <line num="533" count="2" type="stmt"/>
156
- <line num="538" count="0" type="stmt"/>
157
- <line num="539" count="0" type="stmt"/>
158
- <line num="540" count="0" type="stmt"/>
146
+ <line num="509" count="0" type="stmt"/>
147
+ <line num="512" count="0" type="stmt"/>
148
+ <line num="516" count="2" type="stmt"/>
149
+ <line num="521" count="0" type="stmt"/>
150
+ <line num="522" count="0" type="stmt"/>
151
+ <line num="523" count="0" type="stmt"/>
159
152
  </file>
160
153
  <file name="metro-config.ts" path="/home/runner/work/rnx-kit/rnx-kit/packages/cli/src/metro-config.ts">
161
154
  <metrics statements="68" coveredstatements="37" conditionals="42" coveredconditionals="21" methods="6" coveredmethods="4"/>
@@ -228,6 +221,46 @@
228
221
  <line num="203" count="0" type="stmt"/>
229
222
  <line num="206" count="0" type="stmt"/>
230
223
  </file>
224
+ <file name="test.ts" path="/home/runner/work/rnx-kit/rnx-kit/packages/cli/src/test.ts">
225
+ <metrics statements="37" coveredstatements="13" conditionals="10" coveredconditionals="3" methods="6" coveredmethods="4"/>
226
+ <line num="22" count="1" type="stmt"/>
227
+ <line num="25" count="1" type="stmt"/>
228
+ <line num="26" count="1" type="stmt"/>
229
+ <line num="34" count="0" type="stmt"/>
230
+ <line num="35" count="0" type="stmt"/>
231
+ <line num="36" count="0" type="stmt"/>
232
+ <line num="37" count="0" type="stmt"/>
233
+ <line num="39" count="0" type="stmt"/>
234
+ <line num="40" count="0" type="stmt"/>
235
+ <line num="44" count="0" type="stmt"/>
236
+ <line num="45" count="0" type="cond" truecount="0" falsecount="2"/>
237
+ <line num="46" count="0" type="stmt"/>
238
+ <line num="50" count="0" type="stmt"/>
239
+ <line num="52" count="0" type="stmt"/>
240
+ <line num="53" count="0" type="cond" truecount="0" falsecount="2"/>
241
+ <line num="54" count="0" type="stmt"/>
242
+ <line num="59" count="0" type="stmt"/>
243
+ <line num="61" count="0" type="stmt"/>
244
+ <line num="62" count="0" type="stmt"/>
245
+ <line num="66" count="2" type="stmt"/>
246
+ <line num="67" count="2" type="stmt"/>
247
+ <line num="70" count="2" type="stmt"/>
248
+ <line num="71" count="2" type="cond" truecount="1" falsecount="1"/>
249
+ <line num="72" count="2" type="stmt"/>
250
+ <line num="85" count="0" type="cond" truecount="0" falsecount="2"/>
251
+ <line num="87" count="0" type="stmt"/>
252
+ <line num="90" count="0" type="stmt"/>
253
+ <line num="91" count="0" type="stmt"/>
254
+ <line num="96" count="0" type="stmt"/>
255
+ <line num="97" count="0" type="stmt"/>
256
+ <line num="98" count="0" type="stmt"/>
257
+ <line num="103" count="0" type="stmt"/>
258
+ <line num="105" count="2" type="stmt"/>
259
+ <line num="106" count="208" type="stmt"/>
260
+ <line num="107" count="208" type="stmt"/>
261
+ <line num="108" count="208" type="stmt"/>
262
+ <line num="116" count="1" type="stmt"/>
263
+ </file>
231
264
  </package>
232
265
  <package name="src.bundle">
233
266
  <metrics statements="31" coveredstatements="31" conditionals="23" coveredconditionals="20" methods="8" coveredmethods="8"/>