cdd-cli 3.1.7 → 3.2.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.
Files changed (136) hide show
  1. package/.eslintrc.json +1 -1
  2. package/.github/workflows/ci.yml +3 -0
  3. package/.github/workflows/docs.yml +8 -1
  4. package/CHANGELOG.md +40 -0
  5. package/CONTRIBUTING.md +28 -15
  6. package/README.md +56 -88
  7. package/babel.config.cjs +18 -1
  8. package/coverage/clover.xml +604 -0
  9. package/coverage/coverage-final.json +17 -0
  10. package/coverage/lcov-report/base.css +224 -0
  11. package/coverage/lcov-report/block-navigation.js +87 -0
  12. package/coverage/lcov-report/favicon.png +0 -0
  13. package/coverage/lcov-report/helpers/constants.js.html +235 -0
  14. package/coverage/lcov-report/helpers/containerOptionsBuilder.js.html +211 -0
  15. package/coverage/lcov-report/helpers/dockerService/serviceComponents/containerActions.js.html +853 -0
  16. package/coverage/lcov-report/helpers/dockerService/serviceComponents/containerList.js.html +289 -0
  17. package/coverage/lcov-report/helpers/dockerService/serviceComponents/index.html +131 -0
  18. package/coverage/lcov-report/helpers/index.html +176 -0
  19. package/coverage/lcov-report/helpers/logger.js.html +424 -0
  20. package/coverage/lcov-report/helpers/safeCall.js.html +139 -0
  21. package/coverage/lcov-report/helpers/validationHelpers.js.html +394 -0
  22. package/coverage/lcov-report/hooks/creation/index.html +146 -0
  23. package/coverage/lcov-report/hooks/creation/useContainerActions.js.html +292 -0
  24. package/coverage/lcov-report/hooks/creation/useContainerCreation.js.html +478 -0
  25. package/coverage/lcov-report/hooks/creation/useLogsViewer.js.html +238 -0
  26. package/coverage/lcov-report/hooks/debug/index.html +116 -0
  27. package/coverage/lcov-report/hooks/debug/useDebugLogs.js.html +172 -0
  28. package/coverage/lcov-report/hooks/index.html +161 -0
  29. package/coverage/lcov-report/hooks/navigation/index.html +116 -0
  30. package/coverage/lcov-report/hooks/navigation/useContainerSelection.js.html +160 -0
  31. package/coverage/lcov-report/hooks/useContainerCommandRouter.js.html +415 -0
  32. package/coverage/lcov-report/hooks/useControls.js.html +685 -0
  33. package/coverage/lcov-report/hooks/useEraseConfirmation.js.html +202 -0
  34. package/coverage/lcov-report/hooks/useExitHandler.js.html +283 -0
  35. package/coverage/lcov-report/index.html +191 -0
  36. package/coverage/lcov-report/prettify.css +1 -0
  37. package/coverage/lcov-report/prettify.js +2 -0
  38. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  39. package/coverage/lcov-report/sorter.js +210 -0
  40. package/coverage/lcov.info +1216 -0
  41. package/dist/components/ContainerRow.js +5 -78
  42. package/dist/components/LogViewer.js +4 -9
  43. package/dist/helpers/containerOptionsBuilder.js +58 -0
  44. package/dist/hooks/creation/useContainerCreation.js +16 -1
  45. package/dist/hooks/debug/useDebugLogs.js +46 -0
  46. package/dist/hooks/navigation/useContainerSelection.js +36 -0
  47. package/dist/hooks/useContainerCommandRouter.js +151 -0
  48. package/dist/{helpers/actionHelpers.js → hooks/useContainerStats.js} +76 -78
  49. package/dist/hooks/useControls.js +83 -342
  50. package/dist/hooks/useEraseConfirmation.js +47 -0
  51. package/dist/hooks/useExitHandler.js +68 -0
  52. package/jest.config.cjs +1 -1
  53. package/package.json +2 -3
  54. package/src/components/ContainerRow.jsx +3 -38
  55. package/src/components/LogViewer.jsx +4 -10
  56. package/src/helpers/constants.js +20 -0
  57. package/src/helpers/containerOptionsBuilder.js +42 -0
  58. package/src/helpers/dockerService/serviceComponents/containerActions.js +55 -8
  59. package/src/helpers/validationHelpers.js +75 -18
  60. package/src/hooks/creation/useContainerCreation.js +34 -4
  61. package/src/hooks/debug/useDebugLogs.js +29 -0
  62. package/src/hooks/navigation/useContainerSelection.js +25 -0
  63. package/src/hooks/useContainerCommandRouter.js +110 -0
  64. package/src/hooks/useContainerStats.js +44 -0
  65. package/src/hooks/useControls.js +75 -274
  66. package/src/hooks/useEraseConfirmation.js +39 -0
  67. package/src/hooks/useExitHandler.js +66 -0
  68. package/test/containerActions.test.js +104 -13
  69. package/test/containerOptionsBuilder.test.js +36 -0
  70. package/test/useContainerCreation.dom.test.js +46 -2
  71. package/test/useControls.dom.test.js +117 -0
  72. package/test/validationHelpers.test.js +51 -0
  73. package/.babelrc +0 -6
  74. package/FIXES_APPLIED.md +0 -419
  75. package/SECURITY.md +0 -5
  76. package/dist/hooks/useLogsStream.js +0 -41
  77. package/docs/_config.yml +0 -13
  78. package/docs/components_ContainerCreationPrompt.jsx.html +0 -114
  79. package/docs/components_ContainerRow.jsx.html +0 -151
  80. package/docs/components_ContainerSection.jsx.html +0 -75
  81. package/docs/components_Footer.jsx.html +0 -66
  82. package/docs/components_Header.jsx.html +0 -84
  83. package/docs/components_LogViewer.jsx.html +0 -91
  84. package/docs/components_MessageFeedback.jsx.html +0 -76
  85. package/docs/components_PromptField.jsx.html +0 -99
  86. package/docs/components_StatsBar.jsx.html +0 -105
  87. package/docs/components_UsageMenu.jsx.html +0 -73
  88. package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
  89. package/docs/fonts/OpenSans-Bold-webfont.svg +0 -1830
  90. package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
  91. package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
  92. package/docs/fonts/OpenSans-BoldItalic-webfont.svg +0 -1830
  93. package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
  94. package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
  95. package/docs/fonts/OpenSans-Italic-webfont.svg +0 -1830
  96. package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
  97. package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
  98. package/docs/fonts/OpenSans-Light-webfont.svg +0 -1831
  99. package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
  100. package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
  101. package/docs/fonts/OpenSans-LightItalic-webfont.svg +0 -1835
  102. package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
  103. package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
  104. package/docs/fonts/OpenSans-Regular-webfont.svg +0 -1831
  105. package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
  106. package/docs/global.html +0 -6145
  107. package/docs/helpers_actionHelpers.js.html +0 -94
  108. package/docs/helpers_constants.js.html +0 -81
  109. package/docs/helpers_dockerService_dockerService.js.html +0 -79
  110. package/docs/helpers_dockerService_serviceComponents_containerActions.js.html +0 -153
  111. package/docs/helpers_dockerService_serviceComponents_containerList.js.html +0 -81
  112. package/docs/helpers_dockerService_serviceComponents_containerLogs.js.html +0 -85
  113. package/docs/helpers_dockerService_serviceComponents_containerStats.js.html +0 -107
  114. package/docs/helpers_dockerService_serviceComponents_imageUtils.js.html +0 -82
  115. package/docs/helpers_exitWithMessage.js.html +0 -77
  116. package/docs/helpers_safeCall.js.html +0 -68
  117. package/docs/helpers_validationHelpers.js.html +0 -96
  118. package/docs/hooks_creation_useContainerActions.js.html +0 -120
  119. package/docs/hooks_creation_useContainerCreation.js.html +0 -152
  120. package/docs/hooks_creation_useLogsViewer.js.html +0 -102
  121. package/docs/hooks_useControls.js.html +0 -298
  122. package/docs/hooks_useLogsStream.js.html +0 -82
  123. package/docs/index.html +0 -65
  124. package/docs/index.js.html +0 -65
  125. package/docs/module-index.html +0 -171
  126. package/docs/scripts/linenumber.js +0 -25
  127. package/docs/scripts/prettify/Apache-License-2.0.txt +0 -202
  128. package/docs/scripts/prettify/lang-css.js +0 -2
  129. package/docs/scripts/prettify/prettify.js +0 -28
  130. package/docs/styles/jsdoc-default.css +0 -358
  131. package/docs/styles/prettify-jsdoc.css +0 -111
  132. package/docs/styles/prettify-tomorrow.css +0 -132
  133. package/esbuild.config.cjs +0 -11
  134. package/src/helpers/actionHelpers.js +0 -52
  135. package/src/hooks/useLogsStream.js +0 -31
  136. package/test/actionHelpers.test.js +0 -106
@@ -0,0 +1,604 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <coverage generated="1777138828865" clover="3.2.0">
3
+ <project timestamp="1777138828865" name="All files">
4
+ <metrics statements="532" coveredstatements="304" conditionals="326" coveredconditionals="151" methods="107" coveredmethods="50" elements="965" coveredelements="505" complexity="0" loc="532" ncloc="532" packages="6" files="16" classes="16"/>
5
+ <package name="helpers">
6
+ <metrics statements="105" coveredstatements="96" conditionals="81" coveredconditionals="68" methods="22" coveredmethods="19"/>
7
+ <file name="constants.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/constants.js">
8
+ <metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
9
+ <line num="6" count="11" type="stmt"/>
10
+ <line num="14" count="11" type="stmt"/>
11
+ <line num="22" count="11" type="stmt"/>
12
+ <line num="27" count="11" type="stmt"/>
13
+ <line num="35" count="11" type="stmt"/>
14
+ <line num="43" count="11" type="stmt"/>
15
+ </file>
16
+ <file name="containerOptionsBuilder.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/containerOptionsBuilder.js">
17
+ <metrics statements="17" coveredstatements="17" conditionals="18" coveredconditionals="17" methods="4" coveredmethods="4"/>
18
+ <line num="17" count="10" type="cond" truecount="2" falsecount="0"/>
19
+ <line num="18" count="9" type="cond" truecount="2" falsecount="0"/>
20
+ <line num="20" count="9" type="stmt"/>
21
+ <line num="21" count="9" type="stmt"/>
22
+ <line num="23" count="9" type="stmt"/>
23
+ <line num="24" count="1" type="stmt"/>
24
+ <line num="25" count="1" type="cond" truecount="3" falsecount="1"/>
25
+ <line num="26" count="1" type="stmt"/>
26
+ <line num="27" count="1" type="stmt"/>
27
+ <line num="28" count="1" type="cond" truecount="2" falsecount="0"/>
28
+ <line num="29" count="1" type="stmt"/>
29
+ <line num="32" count="9" type="stmt"/>
30
+ <line num="36" count="9" type="cond" truecount="2" falsecount="0"/>
31
+ <line num="37" count="9" type="cond" truecount="2" falsecount="0"/>
32
+ <line num="38" count="9" type="cond" truecount="2" falsecount="0"/>
33
+ <line num="39" count="9" type="cond" truecount="2" falsecount="0"/>
34
+ <line num="41" count="9" type="stmt"/>
35
+ </file>
36
+ <file name="logger.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/logger.js">
37
+ <metrics statements="36" coveredstatements="27" conditionals="24" coveredconditionals="14" methods="11" coveredmethods="8"/>
38
+ <line num="5" count="14" type="stmt"/>
39
+ <line num="27" count="28" type="cond" truecount="1" falsecount="1"/>
40
+ <line num="28" count="28" type="stmt"/>
41
+ <line num="30" count="0" type="stmt"/>
42
+ <line num="31" count="0" type="cond" truecount="0" falsecount="2"/>
43
+ <line num="32" count="0" type="stmt"/>
44
+ <line num="34" count="0" type="stmt"/>
45
+ <line num="38" count="14" type="cond" truecount="3" falsecount="0"/>
46
+ <line num="42" count="14" type="cond" truecount="1" falsecount="1"/>
47
+ <line num="44" count="14" type="stmt"/>
48
+ <line num="47" count="29" type="stmt"/>
49
+ <line num="48" count="29" type="cond" truecount="2" falsecount="0"/>
50
+ <line num="52" count="29" type="cond" truecount="2" falsecount="0"/>
51
+ <line num="53" count="10" type="stmt"/>
52
+ <line num="56" count="19" type="stmt"/>
53
+ <line num="57" count="19" type="stmt"/>
54
+ <line num="58" count="19" type="stmt"/>
55
+ <line num="59" count="19" type="stmt"/>
56
+ <line num="62" count="19" type="cond" truecount="1" falsecount="2"/>
57
+ <line num="64" count="19" type="cond" truecount="1" falsecount="1"/>
58
+ <line num="65" count="19" type="cond" truecount="1" falsecount="1"/>
59
+ <line num="66" count="19" type="cond" truecount="1" falsecount="1"/>
60
+ <line num="67" count="19" type="stmt"/>
61
+ <line num="69" count="0" type="stmt"/>
62
+ <line num="73" count="19" type="stmt"/>
63
+ <line num="74" count="0" type="stmt"/>
64
+ <line num="75" count="0" type="stmt"/>
65
+ <line num="87" count="14" type="stmt"/>
66
+ <line num="89" count="10" type="stmt"/>
67
+ <line num="92" count="18" type="stmt"/>
68
+ <line num="95" count="0" type="stmt"/>
69
+ <line num="98" count="1" type="stmt"/>
70
+ <line num="107" count="4" type="cond" truecount="1" falsecount="1"/>
71
+ <line num="108" count="0" type="stmt"/>
72
+ <line num="110" count="4" type="stmt"/>
73
+ <line num="111" count="4" type="stmt"/>
74
+ </file>
75
+ <file name="safeCall.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/safeCall.js">
76
+ <metrics statements="4" coveredstatements="4" conditionals="2" coveredconditionals="2" methods="1" coveredmethods="1"/>
77
+ <line num="11" count="9" type="cond" truecount="2" falsecount="0"/>
78
+ <line num="12" count="8" type="stmt"/>
79
+ <line num="13" count="8" type="stmt"/>
80
+ <line num="15" count="1" type="stmt"/>
81
+ </file>
82
+ <file name="validationHelpers.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/validationHelpers.js">
83
+ <metrics statements="42" coveredstatements="42" conditionals="37" coveredconditionals="35" methods="6" coveredmethods="6"/>
84
+ <line num="12" count="6" type="cond" truecount="4" falsecount="0"/>
85
+ <line num="13" count="6" type="stmt"/>
86
+ <line num="14" count="5" type="cond" truecount="1" falsecount="1"/>
87
+ <line num="15" count="5" type="stmt"/>
88
+ <line num="16" count="6" type="stmt"/>
89
+ <line num="17" count="6" type="cond" truecount="4" falsecount="0"/>
90
+ <line num="19" count="5" type="stmt"/>
91
+ <line num="30" count="15" type="cond" truecount="1" falsecount="1"/>
92
+ <line num="32" count="15" type="stmt"/>
93
+ <line num="33" count="15" type="stmt"/>
94
+ <line num="34" count="15" type="cond" truecount="2" falsecount="0"/>
95
+ <line num="35" count="2" type="stmt"/>
96
+ <line num="38" count="15" type="stmt"/>
97
+ <line num="39" count="15" type="cond" truecount="2" falsecount="0"/>
98
+ <line num="40" count="6" type="stmt"/>
99
+ <line num="42" count="15" type="stmt"/>
100
+ <line num="60" count="22" type="cond" truecount="2" falsecount="0"/>
101
+ <line num="63" count="22" type="stmt"/>
102
+ <line num="64" count="22" type="stmt"/>
103
+ <line num="66" count="22" type="cond" truecount="4" falsecount="0"/>
104
+ <line num="67" count="15" type="stmt"/>
105
+ <line num="68" count="14" type="stmt"/>
106
+ <line num="69" count="15" type="stmt"/>
107
+ <line num="70" count="15" type="cond" truecount="2" falsecount="0"/>
108
+ <line num="71" count="1" type="stmt"/>
109
+ <line num="72" count="1" type="stmt"/>
110
+ <line num="74" count="14" type="stmt"/>
111
+ <line num="75" count="14" type="stmt"/>
112
+ <line num="76" count="14" type="cond" truecount="2" falsecount="0"/>
113
+ <line num="77" count="3" type="stmt"/>
114
+ <line num="78" count="3" type="stmt"/>
115
+ <line num="80" count="11" type="stmt"/>
116
+ <line num="84" count="22" type="cond" truecount="2" falsecount="0"/>
117
+ <line num="86" count="7" type="stmt"/>
118
+ <line num="90" count="15" type="stmt"/>
119
+ <line num="91" count="15" type="stmt"/>
120
+ <line num="92" count="15" type="stmt"/>
121
+ <line num="94" count="15" type="cond" truecount="5" falsecount="0"/>
122
+ <line num="95" count="6" type="stmt"/>
123
+ <line num="96" count="6" type="cond" truecount="4" falsecount="0"/>
124
+ <line num="97" count="3" type="stmt"/>
125
+ <line num="102" count="15" type="stmt"/>
126
+ </file>
127
+ </package>
128
+ <package name="helpers.dockerService.serviceComponents">
129
+ <metrics statements="152" coveredstatements="112" conditionals="87" coveredconditionals="55" methods="24" coveredmethods="17"/>
130
+ <file name="containerActions.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/dockerService/serviceComponents/containerActions.js">
131
+ <metrics statements="125" coveredstatements="92" conditionals="68" coveredconditionals="41" methods="16" coveredmethods="13"/>
132
+ <line num="16" count="29" type="stmt"/>
133
+ <line num="19" count="29" type="stmt"/>
134
+ <line num="32" count="1" type="stmt"/>
135
+ <line num="33" count="1" type="stmt"/>
136
+ <line num="34" count="1" type="stmt"/>
137
+ <line num="35" count="1" type="stmt"/>
138
+ <line num="36" count="1" type="stmt"/>
139
+ <line num="38" count="0" type="stmt"/>
140
+ <line num="39" count="0" type="stmt"/>
141
+ <line num="51" count="3" type="cond" truecount="1" falsecount="1"/>
142
+ <line num="52" count="3" type="stmt"/>
143
+ <line num="53" count="3" type="stmt"/>
144
+ <line num="54" count="3" type="cond" truecount="1" falsecount="1"/>
145
+ <line num="55" count="3" type="stmt"/>
146
+ <line num="56" count="3" type="cond" truecount="1" falsecount="1"/>
147
+ <line num="57" count="3" type="stmt"/>
148
+ <line num="70" count="6" type="stmt"/>
149
+ <line num="72" count="6" type="stmt"/>
150
+ <line num="73" count="6" type="stmt"/>
151
+ <line num="75" count="0" type="stmt"/>
152
+ <line num="76" count="0" type="stmt"/>
153
+ <line num="78" count="6" type="cond" truecount="2" falsecount="0"/>
154
+ <line num="79" count="1" type="stmt"/>
155
+ <line num="80" count="1" type="stmt"/>
156
+ <line num="81" count="1" type="stmt"/>
157
+ <line num="82" count="1" type="stmt"/>
158
+ <line num="84" count="0" type="stmt"/>
159
+ <line num="85" count="0" type="stmt"/>
160
+ <line num="88" count="6" type="stmt"/>
161
+ <line num="94" count="6" type="cond" truecount="1" falsecount="1"/>
162
+ <line num="97" count="6" type="stmt"/>
163
+ <line num="99" count="6" type="cond" truecount="1" falsecount="1"/>
164
+ <line num="100" count="6" type="stmt"/>
165
+ <line num="101" count="6" type="stmt"/>
166
+ <line num="102" count="6" type="cond" truecount="3" falsecount="1"/>
167
+ <line num="103" count="6" type="stmt"/>
168
+ <line num="104" count="6" type="cond" truecount="1" falsecount="1"/>
169
+ <line num="105" count="6" type="stmt"/>
170
+ <line num="106" count="6" type="stmt"/>
171
+ <line num="107" count="6" type="stmt"/>
172
+ <line num="108" count="1" type="cond" truecount="1" falsecount="1"/>
173
+ <line num="109" count="1" type="cond" truecount="3" falsecount="1"/>
174
+ <line num="110" count="1" type="stmt"/>
175
+ <line num="115" count="0" type="stmt"/>
176
+ <line num="118" count="6" type="stmt"/>
177
+ <line num="119" count="4" type="stmt"/>
178
+ <line num="120" count="4" type="stmt"/>
179
+ <line num="122" count="6" type="stmt"/>
180
+ <line num="123" count="4" type="stmt"/>
181
+ <line num="124" count="4" type="cond" truecount="1" falsecount="1"/>
182
+ <line num="125" count="0" type="cond" truecount="0" falsecount="2"/>
183
+ <line num="126" count="0" type="stmt"/>
184
+ <line num="127" count="0" type="stmt"/>
185
+ <line num="129" count="0" type="stmt"/>
186
+ <line num="130" count="0" type="stmt"/>
187
+ <line num="131" count="0" type="stmt"/>
188
+ <line num="132" count="0" type="stmt"/>
189
+ <line num="133" count="0" type="stmt"/>
190
+ <line num="135" count="0" type="stmt"/>
191
+ <line num="136" count="0" type="stmt"/>
192
+ <line num="138" count="4" type="stmt"/>
193
+ <line num="139" count="4" type="stmt"/>
194
+ <line num="140" count="1" type="stmt"/>
195
+ <line num="142" count="4" type="stmt"/>
196
+ <line num="143" count="4" type="stmt"/>
197
+ <line num="146" count="6" type="stmt"/>
198
+ <line num="147" count="6" type="cond" truecount="1" falsecount="2"/>
199
+ <line num="148" count="6" type="cond" truecount="1" falsecount="1"/>
200
+ <line num="151" count="6" type="cond" truecount="2" falsecount="0"/>
201
+ <line num="152" count="3" type="stmt"/>
202
+ <line num="153" count="3" type="stmt"/>
203
+ <line num="154" count="3" type="cond" truecount="4" falsecount="0"/>
204
+ <line num="155" count="1" type="stmt"/>
205
+ <line num="156" count="1" type="stmt"/>
206
+ <line num="157" count="1" type="stmt"/>
207
+ <line num="161" count="6" type="cond" truecount="2" falsecount="0"/>
208
+ <line num="162" count="4" type="cond" truecount="2" falsecount="0"/>
209
+ <line num="163" count="4" type="cond" truecount="2" falsecount="0"/>
210
+ <line num="164" count="4" type="cond" truecount="2" falsecount="0"/>
211
+ <line num="165" count="4" type="stmt"/>
212
+ <line num="166" count="4" type="cond" truecount="1" falsecount="1"/>
213
+ <line num="167" count="4" type="cond" truecount="1" falsecount="1"/>
214
+ <line num="169" count="4" type="cond" truecount="2" falsecount="2"/>
215
+ <line num="170" count="4" type="stmt"/>
216
+ <line num="171" count="4" type="stmt"/>
217
+ <line num="172" count="4" type="cond" truecount="1" falsecount="1"/>
218
+ <line num="173" count="4" type="stmt"/>
219
+ <line num="174" count="4" type="stmt"/>
220
+ <line num="175" count="4" type="stmt"/>
221
+ <line num="181" count="0" type="stmt"/>
222
+ <line num="185" count="0" type="cond" truecount="0" falsecount="2"/>
223
+ <line num="186" count="0" type="stmt"/>
224
+ <line num="187" count="0" type="stmt"/>
225
+ <line num="188" count="0" type="stmt"/>
226
+ <line num="189" count="0" type="cond" truecount="0" falsecount="2"/>
227
+ <line num="190" count="0" type="cond" truecount="0" falsecount="2"/>
228
+ <line num="191" count="0" type="stmt"/>
229
+ <line num="196" count="6" type="stmt"/>
230
+ <line num="197" count="6" type="stmt"/>
231
+ <line num="198" count="6" type="cond" truecount="2" falsecount="0"/>
232
+ <line num="199" count="6" type="stmt"/>
233
+ <line num="200" count="6" type="stmt"/>
234
+ <line num="202" count="0" type="stmt"/>
235
+ <line num="203" count="0" type="stmt"/>
236
+ <line num="213" count="1" type="stmt"/>
237
+ <line num="214" count="1" type="stmt"/>
238
+ <line num="215" count="1" type="stmt"/>
239
+ <line num="216" count="1" type="stmt"/>
240
+ <line num="217" count="1" type="stmt"/>
241
+ <line num="219" count="0" type="stmt"/>
242
+ <line num="220" count="0" type="stmt"/>
243
+ <line num="230" count="1" type="stmt"/>
244
+ <line num="231" count="1" type="stmt"/>
245
+ <line num="232" count="1" type="stmt"/>
246
+ <line num="233" count="1" type="stmt"/>
247
+ <line num="234" count="1" type="stmt"/>
248
+ <line num="236" count="0" type="stmt"/>
249
+ <line num="237" count="0" type="stmt"/>
250
+ <line num="247" count="1" type="stmt"/>
251
+ <line num="248" count="1" type="stmt"/>
252
+ <line num="249" count="1" type="stmt"/>
253
+ <line num="250" count="1" type="stmt"/>
254
+ <line num="251" count="1" type="stmt"/>
255
+ <line num="253" count="0" type="stmt"/>
256
+ <line num="254" count="0" type="stmt"/>
257
+ </file>
258
+ <file name="containerList.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/helpers/dockerService/serviceComponents/containerList.js">
259
+ <metrics statements="27" coveredstatements="20" conditionals="19" coveredconditionals="14" methods="8" coveredmethods="4"/>
260
+ <line num="4" count="3" type="stmt"/>
261
+ <line num="13" count="3" type="stmt"/>
262
+ <line num="16" count="3" type="cond" truecount="5" falsecount="0"/>
263
+ <line num="17" count="1" type="stmt"/>
264
+ <line num="18" count="2" type="cond" truecount="2" falsecount="2"/>
265
+ <line num="19" count="0" type="stmt"/>
266
+ <line num="20" count="2" type="cond" truecount="4" falsecount="0"/>
267
+ <line num="21" count="1" type="stmt"/>
268
+ <line num="23" count="1" type="stmt"/>
269
+ <line num="26" count="3" type="cond" truecount="1" falsecount="1"/>
270
+ <line num="27" count="0" type="stmt"/>
271
+ <line num="30" count="3" type="stmt"/>
272
+ <line num="31" count="3" type="cond" truecount="1" falsecount="1"/>
273
+ <line num="39" count="3" type="stmt"/>
274
+ <line num="40" count="3" type="stmt"/>
275
+ <line num="41" count="3" type="stmt"/>
276
+ <line num="42" count="3" type="stmt"/>
277
+ <line num="43" count="3" type="stmt"/>
278
+ <line num="51" count="3" type="stmt"/>
279
+ <line num="52" count="0" type="stmt"/>
280
+ <line num="54" count="3" type="cond" truecount="1" falsecount="1"/>
281
+ <line num="55" count="0" type="stmt"/>
282
+ <line num="58" count="3" type="stmt"/>
283
+ <line num="59" count="0" type="stmt"/>
284
+ <line num="61" count="3" type="stmt"/>
285
+ <line num="65" count="0" type="stmt"/>
286
+ <line num="66" count="0" type="stmt"/>
287
+ </file>
288
+ </package>
289
+ <package name="hooks">
290
+ <metrics statements="150" coveredstatements="35" conditionals="105" coveredconditionals="6" methods="38" coveredmethods="6"/>
291
+ <file name="useContainerCommandRouter.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/useContainerCommandRouter.js">
292
+ <metrics statements="36" coveredstatements="2" conditionals="26" coveredconditionals="0" methods="7" coveredmethods="1"/>
293
+ <line num="39" count="24" type="stmt"/>
294
+ <line num="40" count="0" type="stmt"/>
295
+ <line num="42" count="0" type="cond" truecount="0" falsecount="2"/>
296
+ <line num="43" count="0" type="stmt"/>
297
+ <line num="44" count="0" type="stmt"/>
298
+ <line num="48" count="0" type="cond" truecount="0" falsecount="3"/>
299
+ <line num="51" count="0" type="stmt"/>
300
+ <line num="54" count="0" type="cond" truecount="0" falsecount="2"/>
301
+ <line num="55" count="0" type="stmt"/>
302
+ <line num="56" count="0" type="stmt"/>
303
+ <line num="60" count="0" type="cond" truecount="0" falsecount="5"/>
304
+ <line num="66" count="0" type="stmt"/>
305
+ <line num="69" count="0" type="cond" truecount="0" falsecount="2"/>
306
+ <line num="70" count="0" type="stmt"/>
307
+ <line num="71" count="0" type="stmt"/>
308
+ <line num="75" count="0" type="stmt"/>
309
+ <line num="78" count="0" type="cond" truecount="0" falsecount="2"/>
310
+ <line num="79" count="0" type="cond" truecount="0" falsecount="2"/>
311
+ <line num="80" count="0" type="stmt"/>
312
+ <line num="82" count="0" type="stmt"/>
313
+ <line num="83" count="0" type="stmt"/>
314
+ <line num="86" count="0" type="cond" truecount="0" falsecount="2"/>
315
+ <line num="87" count="0" type="cond" truecount="0" falsecount="2"/>
316
+ <line num="88" count="0" type="stmt"/>
317
+ <line num="90" count="0" type="stmt"/>
318
+ <line num="91" count="0" type="stmt"/>
319
+ <line num="92" count="0" type="stmt"/>
320
+ <line num="95" count="0" type="cond" truecount="0" falsecount="2"/>
321
+ <line num="96" count="0" type="stmt"/>
322
+ <line num="97" count="0" type="stmt"/>
323
+ <line num="98" count="0" type="stmt"/>
324
+ <line num="101" count="0" type="cond" truecount="0" falsecount="2"/>
325
+ <line num="102" count="0" type="stmt"/>
326
+ <line num="103" count="0" type="stmt"/>
327
+ <line num="106" count="0" type="stmt"/>
328
+ <line num="109" count="24" type="stmt"/>
329
+ </file>
330
+ <file name="useControls.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/useControls.js">
331
+ <metrics statements="83" coveredstatements="26" conditionals="59" coveredconditionals="6" methods="23" coveredmethods="3"/>
332
+ <line num="25" count="24" type="stmt"/>
333
+ <line num="28" count="24" type="stmt"/>
334
+ <line num="30" count="24" type="stmt"/>
335
+ <line num="32" count="4" type="stmt"/>
336
+ <line num="33" count="4" type="stmt"/>
337
+ <line num="34" count="4" type="stmt"/>
338
+ <line num="35" count="4" type="stmt"/>
339
+ <line num="36" count="4" type="stmt"/>
340
+ <line num="37" count="3" type="stmt"/>
341
+ <line num="38" count="3" type="cond" truecount="4" falsecount="0"/>
342
+ <line num="39" count="3" type="stmt"/>
343
+ <line num="41" count="3" type="stmt"/>
344
+ <line num="42" count="3" type="stmt"/>
345
+ <line num="44" count="1" type="stmt"/>
346
+ <line num="45" count="1" type="stmt"/>
347
+ <line num="47" count="4" type="stmt"/>
348
+ <line num="50" count="0" type="stmt"/>
349
+ <line num="54" count="24" type="stmt"/>
350
+ <line num="55" count="24" type="stmt"/>
351
+ <line num="56" count="24" type="stmt"/>
352
+ <line num="58" count="24" type="stmt"/>
353
+ <line num="60" count="0" type="stmt"/>
354
+ <line num="61" count="0" type="stmt"/>
355
+ <line num="65" count="0" type="stmt"/>
356
+ <line num="68" count="0" type="stmt"/>
357
+ <line num="69" count="0" type="stmt"/>
358
+ <line num="77" count="24" type="stmt"/>
359
+ <line num="78" count="0" type="stmt"/>
360
+ <line num="80" count="0" type="stmt"/>
361
+ <line num="81" count="0" type="stmt"/>
362
+ <line num="82" count="0" type="stmt"/>
363
+ <line num="85" count="0" type="stmt"/>
364
+ <line num="89" count="24" type="stmt"/>
365
+ <line num="97" count="0" type="stmt"/>
366
+ <line num="98" count="0" type="stmt"/>
367
+ <line num="99" count="0" type="stmt"/>
368
+ <line num="101" count="0" type="stmt"/>
369
+ <line num="102" count="0" type="stmt"/>
370
+ <line num="105" count="24" type="stmt"/>
371
+ <line num="107" count="0" type="stmt"/>
372
+ <line num="108" count="0" type="stmt"/>
373
+ <line num="109" count="0" type="stmt"/>
374
+ <line num="110" count="0" type="stmt"/>
375
+ <line num="117" count="24" type="stmt"/>
376
+ <line num="118" count="0" type="stmt"/>
377
+ <line num="120" count="0" type="cond" truecount="0" falsecount="2"/>
378
+ <line num="121" count="0" type="cond" truecount="0" falsecount="2"/>
379
+ <line num="123" count="0" type="cond" truecount="0" falsecount="2"/>
380
+ <line num="124" count="0" type="stmt"/>
381
+ <line num="125" count="0" type="stmt"/>
382
+ <line num="126" count="0" type="stmt"/>
383
+ <line num="129" count="0" type="cond" truecount="0" falsecount="4"/>
384
+ <line num="130" count="0" type="stmt"/>
385
+ <line num="131" count="0" type="stmt"/>
386
+ <line num="134" count="0" type="cond" truecount="0" falsecount="4"/>
387
+ <line num="135" count="0" type="cond" truecount="0" falsecount="2"/>
388
+ <line num="136" count="0" type="cond" truecount="0" falsecount="2"/>
389
+ <line num="137" count="0" type="cond" truecount="0" falsecount="2"/>
390
+ <line num="138" count="0" type="cond" truecount="0" falsecount="2"/>
391
+ <line num="139" count="0" type="stmt"/>
392
+ <line num="142" count="0" type="cond" truecount="0" falsecount="6"/>
393
+ <line num="143" count="0" type="cond" truecount="0" falsecount="2"/>
394
+ <line num="144" count="0" type="cond" truecount="0" falsecount="2"/>
395
+ <line num="145" count="0" type="cond" truecount="0" falsecount="2"/>
396
+ <line num="146" count="0" type="cond" truecount="0" falsecount="2"/>
397
+ <line num="151" count="24" type="stmt"/>
398
+ <line num="152" count="0" type="cond" truecount="0" falsecount="2"/>
399
+ <line num="153" count="0" type="stmt"/>
400
+ <line num="154" count="0" type="stmt"/>
401
+ <line num="157" count="0" type="cond" truecount="0" falsecount="2"/>
402
+ <line num="158" count="0" type="cond" truecount="0" falsecount="4"/>
403
+ <line num="159" count="0" type="stmt"/>
404
+ <line num="161" count="0" type="stmt"/>
405
+ <line num="164" count="0" type="cond" truecount="0" falsecount="2"/>
406
+ <line num="165" count="0" type="stmt"/>
407
+ <line num="166" count="0" type="stmt"/>
408
+ <line num="169" count="0" type="cond" truecount="0" falsecount="4"/>
409
+ <line num="170" count="0" type="stmt"/>
410
+ <line num="171" count="0" type="stmt"/>
411
+ <line num="174" count="0" type="stmt"/>
412
+ <line num="175" count="0" type="stmt"/>
413
+ <line num="176" count="0" type="stmt"/>
414
+ <line num="179" count="24" type="stmt"/>
415
+ </file>
416
+ <file name="useEraseConfirmation.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/useEraseConfirmation.js">
417
+ <metrics statements="13" coveredstatements="4" conditionals="9" coveredconditionals="0" methods="3" coveredmethods="1"/>
418
+ <line num="15" count="24" type="stmt"/>
419
+ <line num="17" count="24" type="stmt"/>
420
+ <line num="18" count="0" type="stmt"/>
421
+ <line num="21" count="24" type="stmt"/>
422
+ <line num="23" count="0" type="cond" truecount="0" falsecount="4"/>
423
+ <line num="24" count="0" type="stmt"/>
424
+ <line num="25" count="0" type="stmt"/>
425
+ <line num="26" count="0" type="stmt"/>
426
+ <line num="29" count="0" type="cond" truecount="0" falsecount="5"/>
427
+ <line num="30" count="0" type="stmt"/>
428
+ <line num="31" count="0" type="stmt"/>
429
+ <line num="32" count="0" type="stmt"/>
430
+ <line num="38" count="24" type="stmt"/>
431
+ </file>
432
+ <file name="useExitHandler.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/useExitHandler.js">
433
+ <metrics statements="18" coveredstatements="3" conditionals="11" coveredconditionals="0" methods="5" coveredmethods="1"/>
434
+ <line num="20" count="24" type="stmt"/>
435
+ <line num="33" count="24" type="stmt"/>
436
+ <line num="34" count="0" type="cond" truecount="0" falsecount="2"/>
437
+ <line num="35" count="0" type="stmt"/>
438
+ <line num="38" count="0" type="cond" truecount="0" falsecount="2"/>
439
+ <line num="39" count="0" type="stmt"/>
440
+ <line num="42" count="0" type="stmt"/>
441
+ <line num="43" count="0" type="stmt"/>
442
+ <line num="44" count="0" type="cond" truecount="0" falsecount="4"/>
443
+ <line num="45" count="0" type="stmt"/>
444
+ <line num="47" count="0" type="stmt"/>
445
+ <line num="54" count="0" type="stmt"/>
446
+ <line num="55" count="0" type="stmt"/>
447
+ <line num="56" count="0" type="stmt"/>
448
+ <line num="57" count="0" type="cond" truecount="0" falsecount="2"/>
449
+ <line num="58" count="0" type="stmt"/>
450
+ <line num="62" count="0" type="stmt"/>
451
+ <line num="65" count="24" type="stmt"/>
452
+ </file>
453
+ </package>
454
+ <package name="hooks.creation">
455
+ <metrics statements="97" coveredstatements="52" conditionals="33" coveredconditionals="22" methods="14" coveredmethods="5"/>
456
+ <file name="useContainerActions.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/creation/useContainerActions.js">
457
+ <metrics statements="24" coveredstatements="3" conditionals="6" coveredconditionals="0" methods="6" coveredmethods="1"/>
458
+ <line num="15" count="24" type="stmt"/>
459
+ <line num="16" count="24" type="stmt"/>
460
+ <line num="26" count="0" type="stmt"/>
461
+ <line num="27" count="0" type="cond" truecount="0" falsecount="2"/>
462
+ <line num="28" count="0" type="cond" truecount="0" falsecount="2"/>
463
+ <line num="29" count="0" type="stmt"/>
464
+ <line num="30" count="0" type="cond" truecount="0" falsecount="2"/>
465
+ <line num="31" count="0" type="stmt"/>
466
+ <line num="32" count="0" type="stmt"/>
467
+ <line num="33" count="0" type="stmt"/>
468
+ <line num="36" count="0" type="stmt"/>
469
+ <line num="37" count="0" type="stmt"/>
470
+ <line num="38" count="0" type="stmt"/>
471
+ <line num="39" count="0" type="stmt"/>
472
+ <line num="40" count="0" type="stmt"/>
473
+ <line num="41" count="0" type="stmt"/>
474
+ <line num="42" count="0" type="stmt"/>
475
+ <line num="44" count="0" type="stmt"/>
476
+ <line num="45" count="0" type="stmt"/>
477
+ <line num="49" count="24" type="stmt"/>
478
+ <line num="57" count="0" type="stmt"/>
479
+ <line num="60" count="0" type="stmt"/>
480
+ <line num="63" count="0" type="stmt"/>
481
+ <line num="66" count="0" type="stmt"/>
482
+ </file>
483
+ <file name="useContainerCreation.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/creation/useContainerCreation.js">
484
+ <metrics statements="62" coveredstatements="45" conditionals="25" coveredconditionals="22" methods="5" coveredmethods="3"/>
485
+ <line num="18" count="51" type="stmt"/>
486
+ <line num="19" count="51" type="stmt"/>
487
+ <line num="20" count="51" type="stmt"/>
488
+ <line num="21" count="51" type="stmt"/>
489
+ <line num="22" count="51" type="stmt"/>
490
+ <line num="23" count="51" type="stmt"/>
491
+ <line num="24" count="51" type="stmt"/>
492
+ <line num="30" count="32" type="cond" truecount="2" falsecount="0"/>
493
+ <line num="31" count="9" type="cond" truecount="2" falsecount="0"/>
494
+ <line num="32" count="1" type="stmt"/>
495
+ <line num="33" count="1" type="stmt"/>
496
+ <line num="34" count="1" type="stmt"/>
497
+ <line num="36" count="8" type="stmt"/>
498
+ <line num="37" count="8" type="stmt"/>
499
+ <line num="38" count="8" type="stmt"/>
500
+ <line num="39" count="8" type="stmt"/>
501
+ <line num="41" count="23" type="cond" truecount="2" falsecount="0"/>
502
+ <line num="42" count="8" type="stmt"/>
503
+ <line num="43" count="8" type="stmt"/>
504
+ <line num="44" count="8" type="stmt"/>
505
+ <line num="45" count="8" type="stmt"/>
506
+ <line num="47" count="15" type="cond" truecount="2" falsecount="0"/>
507
+ <line num="49" count="8" type="cond" truecount="4" falsecount="0"/>
508
+ <line num="50" count="1" type="stmt"/>
509
+ <line num="51" count="1" type="stmt"/>
510
+ <line num="52" count="1" type="stmt"/>
511
+ <line num="54" count="7" type="stmt"/>
512
+ <line num="55" count="24" type="stmt"/>
513
+ <line num="57" count="7" type="stmt"/>
514
+ <line num="58" count="7" type="stmt"/>
515
+ <line num="59" count="7" type="cond" truecount="5" falsecount="0"/>
516
+ <line num="60" count="2" type="stmt"/>
517
+ <line num="61" count="2" type="stmt"/>
518
+ <line num="62" count="5" type="cond" truecount="1" falsecount="1"/>
519
+ <line num="63" count="0" type="stmt"/>
520
+ <line num="64" count="0" type="stmt"/>
521
+ <line num="66" count="5" type="stmt"/>
522
+ <line num="67" count="5" type="stmt"/>
523
+ <line num="69" count="7" type="stmt"/>
524
+ <line num="71" count="7" type="cond" truecount="1" falsecount="1"/>
525
+ <line num="73" count="7" type="stmt"/>
526
+ <line num="74" count="7" type="cond" truecount="2" falsecount="0"/>
527
+ <line num="75" count="1" type="stmt"/>
528
+ <line num="76" count="1" type="stmt"/>
529
+ <line num="77" count="1" type="stmt"/>
530
+ <line num="80" count="6" type="stmt"/>
531
+ <line num="88" count="0" type="stmt"/>
532
+ <line num="89" count="0" type="stmt"/>
533
+ <line num="90" count="0" type="stmt"/>
534
+ <line num="91" count="0" type="stmt"/>
535
+ <line num="92" count="0" type="stmt"/>
536
+ <line num="93" count="0" type="stmt"/>
537
+ <line num="94" count="0" type="stmt"/>
538
+ <line num="95" count="0" type="stmt"/>
539
+ <line num="103" count="0" type="stmt"/>
540
+ <line num="104" count="0" type="stmt"/>
541
+ <line num="105" count="0" type="stmt"/>
542
+ <line num="106" count="0" type="stmt"/>
543
+ <line num="107" count="0" type="stmt"/>
544
+ <line num="108" count="0" type="stmt"/>
545
+ <line num="109" count="0" type="stmt"/>
546
+ <line num="112" count="51" type="stmt"/>
547
+ </file>
548
+ <file name="useLogsViewer.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/creation/useLogsViewer.js">
549
+ <metrics statements="11" coveredstatements="4" conditionals="2" coveredconditionals="0" methods="3" coveredmethods="1"/>
550
+ <line num="18" count="24" type="stmt"/>
551
+ <line num="19" count="24" type="stmt"/>
552
+ <line num="20" count="24" type="stmt"/>
553
+ <line num="26" count="0" type="stmt"/>
554
+ <line num="27" count="0" type="stmt"/>
555
+ <line num="34" count="0" type="stmt"/>
556
+ <line num="35" count="0" type="stmt"/>
557
+ <line num="36" count="0" type="cond" truecount="0" falsecount="2"/>
558
+ <line num="37" count="0" type="stmt"/>
559
+ <line num="38" count="0" type="stmt"/>
560
+ <line num="42" count="24" type="stmt"/>
561
+ </file>
562
+ </package>
563
+ <package name="hooks.debug">
564
+ <metrics statements="16" coveredstatements="6" conditionals="10" coveredconditionals="0" methods="5" coveredmethods="2"/>
565
+ <file name="useDebugLogs.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/debug/useDebugLogs.js">
566
+ <metrics statements="16" coveredstatements="6" conditionals="10" coveredconditionals="0" methods="5" coveredmethods="2"/>
567
+ <line num="5" count="24" type="stmt"/>
568
+ <line num="6" count="24" type="stmt"/>
569
+ <line num="8" count="24" type="stmt"/>
570
+ <line num="9" count="4" type="stmt"/>
571
+ <line num="10" count="0" type="stmt"/>
572
+ <line num="11" count="0" type="cond" truecount="0" falsecount="2"/>
573
+ <line num="12" count="0" type="cond" truecount="0" falsecount="2"/>
574
+ <line num="13" count="0" type="cond" truecount="0" falsecount="4"/>
575
+ <line num="14" count="0" type="stmt"/>
576
+ <line num="15" count="0" type="stmt"/>
577
+ <line num="17" count="0" type="stmt"/>
578
+ <line num="20" count="0" type="cond" truecount="0" falsecount="2"/>
579
+ <line num="21" count="0" type="stmt"/>
580
+ <line num="22" count="0" type="stmt"/>
581
+ <line num="25" count="4" type="stmt"/>
582
+ <line num="28" count="24" type="stmt"/>
583
+ </file>
584
+ </package>
585
+ <package name="hooks.navigation">
586
+ <metrics statements="12" coveredstatements="3" conditionals="10" coveredconditionals="0" methods="4" coveredmethods="1"/>
587
+ <file name="useContainerSelection.js" path="/mnt/Secondary/Proyectos/Personal/JavaScript/ProyectosWeb/CLI/CDD/src/hooks/navigation/useContainerSelection.js">
588
+ <metrics statements="12" coveredstatements="3" conditionals="10" coveredconditionals="0" methods="4" coveredmethods="1"/>
589
+ <line num="4" count="24" type="stmt"/>
590
+ <line num="6" count="24" type="stmt"/>
591
+ <line num="7" count="0" type="cond" truecount="0" falsecount="2"/>
592
+ <line num="8" count="0" type="stmt"/>
593
+ <line num="11" count="0" type="cond" truecount="0" falsecount="2"/>
594
+ <line num="12" count="0" type="cond" truecount="0" falsecount="2"/>
595
+ <line num="13" count="0" type="stmt"/>
596
+ <line num="16" count="0" type="cond" truecount="0" falsecount="2"/>
597
+ <line num="17" count="0" type="cond" truecount="0" falsecount="2"/>
598
+ <line num="18" count="0" type="stmt"/>
599
+ <line num="21" count="0" type="stmt"/>
600
+ <line num="24" count="24" type="stmt"/>
601
+ </file>
602
+ </package>
603
+ </project>
604
+ </coverage>