@hedia/recommendation-screen 2.0.1 → 2.1.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 (138) hide show
  1. package/App.d.ts +2 -2
  2. package/App.jsx +3 -20
  3. package/coverage/clover.xml +700 -0
  4. package/coverage/coverage-final.json +28 -0
  5. package/coverage/lcov-report/base.css +224 -0
  6. package/coverage/lcov-report/block-navigation.js +79 -0
  7. package/coverage/lcov-report/favicon.png +0 -0
  8. package/coverage/lcov-report/index.html +201 -0
  9. package/coverage/lcov-report/prettify.css +1 -0
  10. package/coverage/lcov-report/prettify.js +2 -0
  11. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  12. package/coverage/lcov-report/sorter.js +170 -0
  13. package/coverage/lcov-report/src/RecommendationScreen.tsx.html +1460 -0
  14. package/coverage/lcov-report/src/__tests__/index.html +111 -0
  15. package/coverage/lcov-report/src/__tests__/utils.tsx.html +512 -0
  16. package/coverage/lcov-report/src/components/Header.tsx.html +347 -0
  17. package/coverage/lcov-report/src/components/InfoBars.tsx.html +404 -0
  18. package/coverage/lcov-report/src/components/InvisibleNumberInput.tsx.html +374 -0
  19. package/coverage/lcov-report/src/components/LimitationMessage.tsx.html +191 -0
  20. package/coverage/lcov-report/src/components/LineSeparator.tsx.html +152 -0
  21. package/coverage/lcov-report/src/components/RecentInsulin.tsx.html +383 -0
  22. package/coverage/lcov-report/src/components/RecommendationModal.tsx.html +737 -0
  23. package/coverage/lcov-report/src/components/RecommendedCarbs.tsx.html +857 -0
  24. package/coverage/lcov-report/src/components/RecommendedInsulin.tsx.html +605 -0
  25. package/coverage/lcov-report/src/components/Remeasure.tsx.html +440 -0
  26. package/coverage/lcov-report/src/components/TransferToLogbook.tsx.html +380 -0
  27. package/coverage/lcov-report/src/components/TwoOptionModal.tsx.html +635 -0
  28. package/coverage/lcov-report/src/components/activity/Activity.tsx.html +311 -0
  29. package/coverage/lcov-report/src/components/activity/ActivityIcon.tsx.html +242 -0
  30. package/coverage/lcov-report/src/components/activity/ActivityIntensity.tsx.html +257 -0
  31. package/coverage/lcov-report/src/components/activity/index.html +141 -0
  32. package/coverage/lcov-report/src/components/index.html +276 -0
  33. package/coverage/lcov-report/src/components/mood/Emotion.tsx.html +278 -0
  34. package/coverage/lcov-report/src/components/mood/MoodIcon.tsx.html +260 -0
  35. package/coverage/lcov-report/src/components/mood/index.html +126 -0
  36. package/coverage/lcov-report/src/index.html +111 -0
  37. package/coverage/lcov-report/src/locale/i18nUtils.ts.html +161 -0
  38. package/coverage/lcov-report/src/locale/index.html +111 -0
  39. package/coverage/lcov-report/src/utils/AttentionMessages.tsx.html +326 -0
  40. package/coverage/lcov-report/src/utils/Constants.ts.html +176 -0
  41. package/coverage/lcov-report/src/utils/RecommendationError.tsx.html +500 -0
  42. package/coverage/lcov-report/src/utils/RecommendationUtils.ts.html +467 -0
  43. package/coverage/lcov-report/src/utils/Translations.ts.html +107 -0
  44. package/coverage/lcov-report/src/utils/Utils.ts.html +263 -0
  45. package/coverage/lcov-report/src/utils/Validations.ts.html +815 -0
  46. package/coverage/lcov-report/src/utils/index.html +201 -0
  47. package/coverage/lcov.info +1581 -0
  48. package/jest.config.js +2 -1
  49. package/package.json +2 -2
  50. package/src/RecommendationScreen.d.ts +2 -3
  51. package/src/__tests__/RecommendationUtils.test.js +6 -29
  52. package/src/__tests__/Utils.test.js +1 -1
  53. package/src/__tests__/Validations.test.js +19 -7
  54. package/src/__tests__/components/Emotion.test.jsx +7 -8
  55. package/src/__tests__/utils.d.ts +3 -1
  56. package/src/__tests__/utils.jsx +38 -9
  57. package/src/components/Icon.d.ts +13 -0
  58. package/src/components/Icon.jsx +42 -0
  59. package/src/components/LimitationMessage.d.ts +1 -2
  60. package/src/components/RecommendationModal.d.ts +2 -3
  61. package/src/components/RecommendationModal.jsx +2 -1
  62. package/src/components/activity/ActivityIntensity.jsx +4 -3
  63. package/src/locale/da/messages.js +1 -1
  64. package/src/locale/da/messages.po +14 -10
  65. package/src/locale/de/messages.js +1 -1
  66. package/src/locale/de/messages.po +14 -10
  67. package/src/locale/en/messages.js +1 -1
  68. package/src/locale/en/messages.po +14 -10
  69. package/src/locale/es/messages.js +1 -1
  70. package/src/locale/es/messages.po +14 -10
  71. package/src/locale/fr/messages.js +1 -1
  72. package/src/locale/fr/messages.po +14 -10
  73. package/src/locale/it/messages.js +1 -1
  74. package/src/locale/it/messages.po +14 -10
  75. package/src/types/enum.d.ts +9 -8
  76. package/src/types/enum.js +9 -8
  77. package/src/utils/AttentionMessages.d.ts +16 -10
  78. package/src/utils/AttentionMessages.jsx +15 -10
  79. package/src/utils/RecommendationError.d.ts +1 -0
  80. package/src/utils/RecommendationError.jsx +3 -1
  81. package/src/utils/RecommendationUtils.d.ts +2 -3
  82. package/src/utils/RecommendationUtils.js +10 -6
  83. package/src/utils/Utils.d.ts +2 -1
  84. package/src/utils/Utils.js +5 -1
  85. package/src/utils/Validations.d.ts +2 -1
  86. package/src/utils/Validations.js +25 -13
  87. package/tsconfig.json +7 -5
  88. package/App.tsx +0 -157
  89. package/index.ts +0 -6
  90. package/src/RecommendationScreen.tsx +0 -461
  91. package/src/__tests__/RecommendationScreen.test.tsx +0 -1231
  92. package/src/__tests__/RecommendationUtils.test.ts +0 -356
  93. package/src/__tests__/Translate.test.tsx +0 -31
  94. package/src/__tests__/Utils.test.ts +0 -91
  95. package/src/__tests__/Validations.test.ts +0 -625
  96. package/src/__tests__/components/Activity.test.tsx +0 -163
  97. package/src/__tests__/components/Emotion.test.tsx +0 -110
  98. package/src/__tests__/components/Header.test.tsx +0 -44
  99. package/src/__tests__/components/InfoBars.test.tsx +0 -152
  100. package/src/__tests__/components/InvisibleNumberInput.test.tsx +0 -294
  101. package/src/__tests__/components/LimitationMessage.test.tsx +0 -58
  102. package/src/__tests__/components/MoodIcon.test.tsx +0 -45
  103. package/src/__tests__/components/RecommendationModal.test.tsx +0 -169
  104. package/src/__tests__/components/RecommendedCarbs.test.tsx +0 -234
  105. package/src/__tests__/components/RecommendedInsulin.test.tsx +0 -241
  106. package/src/__tests__/components/Remeasure.test.tsx +0 -97
  107. package/src/__tests__/components/TransferToLogbook.test.tsx +0 -38
  108. package/src/__tests__/components/TwoOptionModal.test.tsx +0 -72
  109. package/src/__tests__/utils.tsx +0 -116
  110. package/src/components/Header.tsx +0 -89
  111. package/src/components/Icon.js +0 -41
  112. package/src/components/InfoBars.tsx +0 -108
  113. package/src/components/InvisibleNumberInput.tsx +0 -98
  114. package/src/components/LimitationMessage.tsx +0 -38
  115. package/src/components/LineSeparator.tsx +0 -24
  116. package/src/components/RecentInsulin.tsx +0 -101
  117. package/src/components/RecommendationModal.tsx +0 -224
  118. package/src/components/RecommendedCarbs.tsx +0 -259
  119. package/src/components/RecommendedInsulin.tsx +0 -175
  120. package/src/components/Remeasure.tsx +0 -120
  121. package/src/components/TransferToLogbook.tsx +0 -100
  122. package/src/components/TwoOptionModal.tsx +0 -185
  123. package/src/components/activity/Activity.tsx +0 -77
  124. package/src/components/activity/ActivityIcon.tsx +0 -54
  125. package/src/components/activity/ActivityIntensity.tsx +0 -58
  126. package/src/components/mood/Emotion.tsx +0 -66
  127. package/src/components/mood/MoodIcon.tsx +0 -60
  128. package/src/locale/CleanLanguage.ts +0 -13
  129. package/src/locale/i18nUtils.ts +0 -27
  130. package/src/types/enum.ts +0 -107
  131. package/src/types/types.ts +0 -16
  132. package/src/utils/AttentionMessages.tsx +0 -75
  133. package/src/utils/Constants.ts +0 -32
  134. package/src/utils/RecommendationError.tsx +0 -133
  135. package/src/utils/RecommendationUtils.ts +0 -125
  136. package/src/utils/Translations.ts +0 -9
  137. package/src/utils/Utils.ts +0 -57
  138. package/src/utils/Validations.ts +0 -233
@@ -0,0 +1,700 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <coverage generated="1615459238918" clover="3.2.0">
3
+ <project timestamp="1615459238918" name="All files">
4
+ <metrics statements="592" coveredstatements="592" conditionals="352" coveredconditionals="352" methods="197" coveredmethods="197" elements="1141" coveredelements="1141" complexity="0" loc="592" ncloc="592" packages="7" files="27" classes="27"/>
5
+ <package name="src">
6
+ <metrics statements="102" coveredstatements="102" conditionals="45" coveredconditionals="45" methods="35" coveredmethods="35"/>
7
+ <file name="RecommendationScreen.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/RecommendationScreen.tsx">
8
+ <metrics statements="102" coveredstatements="102" conditionals="45" coveredconditionals="45" methods="35" coveredmethods="35"/>
9
+ <line num="35" count="1" type="stmt"/>
10
+ <line num="91" count="55" type="stmt"/>
11
+ <line num="96" count="55" type="stmt"/>
12
+ <line num="97" count="55" type="stmt"/>
13
+ <line num="98" count="55" type="stmt"/>
14
+ <line num="99" count="54" type="stmt"/>
15
+ <line num="101" count="54" type="stmt"/>
16
+ <line num="102" count="54" type="stmt"/>
17
+ <line num="109" count="54" type="stmt"/>
18
+ <line num="111" count="53" type="stmt"/>
19
+ <line num="113" count="53" type="stmt"/>
20
+ <line num="131" count="53" type="stmt"/>
21
+ <line num="133" count="2" type="stmt"/>
22
+ <line num="134" count="2" type="stmt"/>
23
+ <line num="139" count="55" type="stmt"/>
24
+ <line num="143" count="55" type="cond" truecount="2" falsecount="0"/>
25
+ <line num="144" count="53" type="stmt"/>
26
+ <line num="146" count="55" type="stmt"/>
27
+ <line num="149" count="55" type="stmt"/>
28
+ <line num="150" count="4" type="stmt"/>
29
+ <line num="151" count="4" type="stmt"/>
30
+ <line num="152" count="4" type="cond" truecount="4" falsecount="0"/>
31
+ <line num="153" count="1" type="stmt"/>
32
+ <line num="157" count="55" type="stmt"/>
33
+ <line num="158" count="6" type="stmt"/>
34
+ <line num="161" count="55" type="stmt"/>
35
+ <line num="162" count="5" type="stmt"/>
36
+ <line num="163" count="5" type="stmt"/>
37
+ <line num="172" count="55" type="stmt"/>
38
+ <line num="173" count="5" type="cond" truecount="2" falsecount="0"/>
39
+ <line num="174" count="4" type="stmt"/>
40
+ <line num="176" count="1" type="stmt"/>
41
+ <line num="180" count="55" type="stmt"/>
42
+ <line num="181" count="8" type="stmt"/>
43
+ <line num="184" count="55" type="stmt"/>
44
+ <line num="185" count="1" type="stmt"/>
45
+ <line num="188" count="55" type="stmt"/>
46
+ <line num="189" count="3" type="stmt"/>
47
+ <line num="192" count="55" type="stmt"/>
48
+ <line num="193" count="10" type="stmt"/>
49
+ <line num="196" count="55" type="stmt"/>
50
+ <line num="197" count="3" type="stmt"/>
51
+ <line num="200" count="55" type="stmt"/>
52
+ <line num="201" count="6" type="stmt"/>
53
+ <line num="202" count="6" type="stmt"/>
54
+ <line num="203" count="6" type="stmt"/>
55
+ <line num="208" count="55" type="stmt"/>
56
+ <line num="209" count="2" type="stmt"/>
57
+ <line num="210" count="2" type="stmt"/>
58
+ <line num="211" count="2" type="stmt"/>
59
+ <line num="215" count="55" type="stmt"/>
60
+ <line num="216" count="3" type="stmt"/>
61
+ <line num="217" count="3" type="stmt"/>
62
+ <line num="221" count="55" type="stmt"/>
63
+ <line num="222" count="1" type="stmt"/>
64
+ <line num="223" count="1" type="stmt"/>
65
+ <line num="224" count="1" type="stmt"/>
66
+ <line num="227" count="55" type="stmt"/>
67
+ <line num="228" count="5" type="stmt"/>
68
+ <line num="229" count="5" type="stmt"/>
69
+ <line num="232" count="55" type="stmt"/>
70
+ <line num="233" count="4" type="cond" truecount="2" falsecount="0"/>
71
+ <line num="234" count="4" type="stmt"/>
72
+ <line num="237" count="55" type="stmt"/>
73
+ <line num="238" count="1" type="stmt"/>
74
+ <line num="239" count="1" type="stmt"/>
75
+ <line num="242" count="55" type="stmt"/>
76
+ <line num="243" count="2" type="stmt"/>
77
+ <line num="246" count="55" type="stmt"/>
78
+ <line num="247" count="2" type="stmt"/>
79
+ <line num="250" count="55" type="stmt"/>
80
+ <line num="258" count="7" type="stmt"/>
81
+ <line num="259" count="7" type="stmt"/>
82
+ <line num="260" count="7" type="stmt"/>
83
+ <line num="262" count="7" type="cond" truecount="2" falsecount="0"/>
84
+ <line num="263" count="7" type="stmt"/>
85
+ <line num="266" count="55" type="stmt"/>
86
+ <line num="267" count="162" type="stmt"/>
87
+ <line num="268" count="162" type="stmt"/>
88
+ <line num="269" count="162" type="stmt"/>
89
+ <line num="270" count="162" type="stmt"/>
90
+ <line num="273" count="55" type="stmt"/>
91
+ <line num="274" count="53" type="stmt"/>
92
+ <line num="275" count="53" type="stmt"/>
93
+ <line num="276" count="53" type="stmt"/>
94
+ <line num="278" count="53" type="stmt"/>
95
+ <line num="281" count="55" type="stmt"/>
96
+ <line num="282" count="123" type="stmt"/>
97
+ <line num="284" count="123" type="stmt"/>
98
+ <line num="288" count="124" type="cond" truecount="2" falsecount="0"/>
99
+ <line num="289" count="2" type="stmt"/>
100
+ <line num="301" count="122" type="stmt"/>
101
+ <line num="303" count="122" type="cond" truecount="2" falsecount="0"/>
102
+ <line num="304" count="122" type="cond" truecount="2" falsecount="0"/>
103
+ <line num="306" count="122" type="stmt"/>
104
+ <line num="307" count="122" type="stmt"/>
105
+ <line num="308" count="122" type="stmt"/>
106
+ <line num="309" count="122" type="stmt"/>
107
+ <line num="311" count="122" type="stmt"/>
108
+ <line num="316" count="244" type="cond" truecount="2" falsecount="0"/>
109
+ <line num="317" count="122" type="stmt"/>
110
+ <line num="443" count="1" type="stmt"/>
111
+ </file>
112
+ </package>
113
+ <package name="src.__tests__">
114
+ <metrics statements="20" coveredstatements="20" conditionals="34" coveredconditionals="34" methods="10" coveredmethods="10"/>
115
+ <file name="utils.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/__tests__/utils.tsx">
116
+ <metrics statements="20" coveredstatements="20" conditionals="34" coveredconditionals="34" methods="10" coveredmethods="10"/>
117
+ <line num="11" count="14" type="stmt"/>
118
+ <line num="12" count="14" type="stmt"/>
119
+ <line num="13" count="14" type="stmt"/>
120
+ <line num="15" count="14" type="stmt"/>
121
+ <line num="16" count="14" type="stmt"/>
122
+ <line num="17" count="14" type="stmt"/>
123
+ <line num="20" count="92" type="stmt"/>
124
+ <line num="45" count="66" type="stmt"/>
125
+ <line num="66" count="22" type="stmt"/>
126
+ <line num="75" count="24" type="stmt"/>
127
+ <line num="84" count="98" type="stmt"/>
128
+ <line num="109" count="306" type="stmt"/>
129
+ <line num="115" count="306" type="stmt"/>
130
+ <line num="119" count="14" type="stmt"/>
131
+ <line num="120" count="14" type="stmt"/>
132
+ <line num="121" count="14" type="stmt"/>
133
+ <line num="125" count="94" type="stmt"/>
134
+ <line num="131" count="94" type="stmt"/>
135
+ <line num="135" count="12" type="stmt"/>
136
+ <line num="143" count="69" type="stmt"/>
137
+ </file>
138
+ </package>
139
+ <package name="src.components">
140
+ <metrics statements="157" coveredstatements="157" conditionals="92" coveredconditionals="92" methods="45" coveredmethods="45"/>
141
+ <file name="Header.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/Header.tsx">
142
+ <metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
143
+ <line num="15" count="129" type="stmt"/>
144
+ <line num="49" count="2" type="stmt"/>
145
+ </file>
146
+ <file name="InfoBars.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/InfoBars.tsx">
147
+ <metrics statements="10" coveredstatements="10" conditionals="10" coveredconditionals="10" methods="3" coveredmethods="3"/>
148
+ <line num="17" count="176" type="stmt"/>
149
+ <line num="18" count="383" type="stmt"/>
150
+ <line num="19" count="383" type="cond" truecount="2" falsecount="0"/>
151
+ <line num="20" count="383" type="cond" truecount="2" falsecount="0"/>
152
+ <line num="21" count="383" type="cond" truecount="4" falsecount="0"/>
153
+ <line num="24" count="176" type="stmt"/>
154
+ <line num="25" count="383" type="stmt"/>
155
+ <line num="26" count="383" type="cond" truecount="2" falsecount="0"/>
156
+ <line num="30" count="383" type="stmt"/>
157
+ <line num="54" count="6" type="stmt"/>
158
+ </file>
159
+ <file name="InvisibleNumberInput.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/InvisibleNumberInput.tsx">
160
+ <metrics statements="29" coveredstatements="29" conditionals="12" coveredconditionals="12" methods="8" coveredmethods="8"/>
161
+ <line num="23" count="133" type="stmt"/>
162
+ <line num="28" count="133" type="stmt"/>
163
+ <line num="31" count="133" type="stmt"/>
164
+ <line num="32" count="45" type="stmt"/>
165
+ <line num="35" count="45" type="stmt"/>
166
+ <line num="39" count="133" type="stmt"/>
167
+ <line num="40" count="45" type="stmt"/>
168
+ <line num="41" count="45" type="stmt"/>
169
+ <line num="42" count="40" type="stmt"/>
170
+ <line num="43" count="40" type="stmt"/>
171
+ <line num="44" count="40" type="stmt"/>
172
+ <line num="46" count="45" type="cond" truecount="2" falsecount="0"/>
173
+ <line num="47" count="40" type="stmt"/>
174
+ <line num="49" count="5" type="stmt"/>
175
+ <line num="52" count="133" type="stmt"/>
176
+ <line num="53" count="41" type="cond" truecount="2" falsecount="0"/>
177
+ <line num="54" count="41" type="stmt"/>
178
+ <line num="55" count="41" type="cond" truecount="2" falsecount="0"/>
179
+ <line num="56" count="36" type="stmt"/>
180
+ <line num="58" count="41" type="stmt"/>
181
+ <line num="61" count="41" type="stmt"/>
182
+ <line num="64" count="133" type="stmt"/>
183
+ <line num="65" count="14" type="stmt"/>
184
+ <line num="66" count="14" type="stmt"/>
185
+ <line num="70" count="438" type="stmt"/>
186
+ <line num="71" count="438" type="stmt"/>
187
+ <line num="77" count="876" type="cond" truecount="2" falsecount="0"/>
188
+ <line num="78" count="438" type="stmt"/>
189
+ <line num="92" count="4" type="stmt"/>
190
+ </file>
191
+ <file name="LimitationMessage.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/LimitationMessage.tsx">
192
+ <metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
193
+ <line num="14" count="11" type="stmt"/>
194
+ <line num="15" count="11" type="stmt"/>
195
+ <line num="16" count="11" type="stmt"/>
196
+ </file>
197
+ <file name="LineSeparator.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/LineSeparator.tsx">
198
+ <metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
199
+ <line num="10" count="76" type="stmt"/>
200
+ <line num="18" count="2" type="stmt"/>
201
+ </file>
202
+ <file name="RecentInsulin.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/RecentInsulin.tsx">
203
+ <metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
204
+ <line num="14" count="21" type="stmt"/>
205
+ <line num="15" count="44" type="stmt"/>
206
+ <line num="48" count="1" type="stmt"/>
207
+ </file>
208
+ <file name="RecommendationModal.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/RecommendationModal.tsx">
209
+ <metrics statements="32" coveredstatements="32" conditionals="12" coveredconditionals="12" methods="7" coveredmethods="7"/>
210
+ <line num="24" count="64" type="stmt"/>
211
+ <line num="25" count="64" type="stmt"/>
212
+ <line num="30" count="64" type="stmt"/>
213
+ <line num="31" count="3" type="stmt"/>
214
+ <line num="32" count="3" type="cond" truecount="2" falsecount="0"/>
215
+ <line num="33" count="3" type="cond" truecount="2" falsecount="0"/>
216
+ <line num="36" count="64" type="stmt"/>
217
+ <line num="37" count="36" type="stmt"/>
218
+ <line num="59" count="64" type="stmt"/>
219
+ <line num="60" count="36" type="stmt"/>
220
+ <line num="62" count="36" type="stmt"/>
221
+ <line num="93" count="64" type="stmt"/>
222
+ <line num="94" count="132" type="stmt"/>
223
+ <line num="95" count="132" type="cond" truecount="2" falsecount="0"/>
224
+ <line num="97" count="132" type="stmt"/>
225
+ <line num="122" count="64" type="stmt"/>
226
+ <line num="123" count="3" type="stmt"/>
227
+ <line num="124" count="3" type="stmt"/>
228
+ <line num="128" count="135" type="stmt"/>
229
+ <line num="129" count="135" type="stmt"/>
230
+ <line num="130" count="135" type="stmt"/>
231
+ <line num="138" count="4" type="stmt"/>
232
+ <line num="139" count="4" type="stmt"/>
233
+ <line num="140" count="4" type="stmt"/>
234
+ <line num="141" count="4" type="stmt"/>
235
+ <line num="142" count="4" type="stmt"/>
236
+ <line num="143" count="4" type="stmt"/>
237
+ <line num="144" count="4" type="stmt"/>
238
+ <line num="145" count="4" type="stmt"/>
239
+ <line num="146" count="4" type="stmt"/>
240
+ <line num="147" count="4" type="stmt"/>
241
+ <line num="149" count="4" type="stmt"/>
242
+ </file>
243
+ <file name="RecommendedCarbs.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/RecommendedCarbs.tsx">
244
+ <metrics statements="21" coveredstatements="21" conditionals="10" coveredconditionals="10" methods="7" coveredmethods="7"/>
245
+ <line num="34" count="64" type="stmt"/>
246
+ <line num="40" count="64" type="stmt"/>
247
+ <line num="41" count="2" type="stmt"/>
248
+ <line num="44" count="64" type="stmt"/>
249
+ <line num="45" count="1" type="stmt"/>
250
+ <line num="50" count="64" type="stmt"/>
251
+ <line num="51" count="6" type="cond" truecount="2" falsecount="0"/>
252
+ <line num="52" count="5" type="cond" truecount="2" falsecount="0"/>
253
+ <line num="53" count="1" type="stmt"/>
254
+ <line num="54" count="1" type="stmt"/>
255
+ <line num="60" count="4" type="stmt"/>
256
+ <line num="64" count="64" type="stmt"/>
257
+ <line num="65" count="38" type="cond" truecount="2" falsecount="0"/>
258
+ <line num="66" count="38" type="stmt"/>
259
+ <line num="67" count="38" type="stmt"/>
260
+ <line num="130" count="20" type="stmt"/>
261
+ <line num="140" count="64" type="stmt"/>
262
+ <line num="141" count="174" type="stmt"/>
263
+ <line num="161" count="136" type="stmt"/>
264
+ <line num="162" count="136" type="stmt"/>
265
+ <line num="182" count="2" type="stmt"/>
266
+ </file>
267
+ <file name="RecommendedInsulin.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/RecommendedInsulin.tsx">
268
+ <metrics statements="27" coveredstatements="27" conditionals="18" coveredconditionals="18" methods="7" coveredmethods="7"/>
269
+ <line num="29" count="2" type="stmt"/>
270
+ <line num="35" count="71" type="stmt"/>
271
+ <line num="37" count="71" type="stmt"/>
272
+ <line num="43" count="69" type="stmt"/>
273
+ <line num="44" count="69" type="cond" truecount="2" falsecount="0"/>
274
+ <line num="45" count="2" type="stmt"/>
275
+ <line num="49" count="71" type="stmt"/>
276
+ <line num="50" count="1" type="stmt"/>
277
+ <line num="53" count="71" type="stmt"/>
278
+ <line num="55" count="17" type="cond" truecount="5" falsecount="0"/>
279
+ <line num="56" count="17" type="stmt"/>
280
+ <line num="59" count="17" type="stmt"/>
281
+ <line num="62" count="71" type="stmt"/>
282
+ <line num="63" count="28" type="stmt"/>
283
+ <line num="66" count="27" type="cond" truecount="2" falsecount="0"/>
284
+ <line num="68" count="27" type="cond" truecount="2" falsecount="0"/>
285
+ <line num="69" count="12" type="cond" truecount="2" falsecount="0"/>
286
+ <line num="70" count="12" type="stmt"/>
287
+ <line num="71" count="12" type="stmt"/>
288
+ <line num="77" count="15" type="stmt"/>
289
+ <line num="78" count="15" type="stmt"/>
290
+ <line num="81" count="71" type="stmt"/>
291
+ <line num="82" count="140" type="cond" truecount="2" falsecount="0"/>
292
+ <line num="83" count="140" type="cond" truecount="3" falsecount="0"/>
293
+ <line num="84" count="140" type="stmt"/>
294
+ <line num="123" count="71" type="stmt"/>
295
+ <line num="131" count="2" type="stmt"/>
296
+ </file>
297
+ <file name="Remeasure.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/Remeasure.tsx">
298
+ <metrics statements="15" coveredstatements="15" conditionals="10" coveredconditionals="10" methods="5" coveredmethods="5"/>
299
+ <line num="19" count="69" type="stmt"/>
300
+ <line num="24" count="69" type="stmt"/>
301
+ <line num="25" count="17" type="stmt"/>
302
+ <line num="26" count="17" type="stmt"/>
303
+ <line num="29" count="69" type="stmt"/>
304
+ <line num="30" count="169" type="stmt"/>
305
+ <line num="34" count="152" type="stmt"/>
306
+ <line num="35" count="152" type="stmt"/>
307
+ <line num="36" count="152" type="cond" truecount="2" falsecount="0"/>
308
+ <line num="37" count="152" type="cond" truecount="2" falsecount="0"/>
309
+ <line num="38" count="152" type="stmt"/>
310
+ <line num="57" count="304" type="cond" truecount="2" falsecount="0"/>
311
+ <line num="58" count="152" type="stmt"/>
312
+ <line num="77" count="2" type="stmt"/>
313
+ <line num="115" count="2" type="stmt"/>
314
+ </file>
315
+ <file name="TransferToLogbook.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/TransferToLogbook.tsx">
316
+ <metrics statements="8" coveredstatements="8" conditionals="4" coveredconditionals="4" methods="2" coveredmethods="2"/>
317
+ <line num="19" count="56" type="stmt"/>
318
+ <line num="23" count="56" type="stmt"/>
319
+ <line num="24" count="6" type="stmt"/>
320
+ <line num="27" count="6" type="stmt"/>
321
+ <line num="31" count="126" type="cond" truecount="2" falsecount="0"/>
322
+ <line num="32" count="45" type="stmt"/>
323
+ <line num="35" count="81" type="stmt"/>
324
+ <line num="58" count="2" type="stmt"/>
325
+ </file>
326
+ <file name="TwoOptionModal.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/TwoOptionModal.tsx">
327
+ <metrics statements="5" coveredstatements="5" conditionals="16" coveredconditionals="16" methods="2" coveredmethods="2"/>
328
+ <line num="22" count="13" type="stmt"/>
329
+ <line num="26" count="16" type="stmt"/>
330
+ <line num="27" count="16" type="stmt"/>
331
+ <line num="82" count="2" type="stmt"/>
332
+ <line num="83" count="2" type="stmt"/>
333
+ </file>
334
+ </package>
335
+ <package name="src.components.activity">
336
+ <metrics statements="17" coveredstatements="17" conditionals="8" coveredconditionals="8" methods="4" coveredmethods="4"/>
337
+ <file name="Activity.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/activity/Activity.tsx">
338
+ <metrics statements="4" coveredstatements="4" conditionals="2" coveredconditionals="2" methods="1" coveredmethods="1"/>
339
+ <line num="18" count="25" type="stmt"/>
340
+ <line num="19" count="25" type="cond" truecount="2" falsecount="0"/>
341
+ <line num="21" count="25" type="stmt"/>
342
+ <line num="57" count="2" type="stmt"/>
343
+ </file>
344
+ <file name="ActivityIcon.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/activity/ActivityIcon.tsx">
345
+ <metrics statements="8" coveredstatements="8" conditionals="6" coveredconditionals="6" methods="2" coveredmethods="2"/>
346
+ <line num="8" count="2" type="stmt"/>
347
+ <line num="10" count="2" type="stmt"/>
348
+ <line num="19" count="21" type="stmt"/>
349
+ <line num="20" count="25" type="cond" truecount="2" falsecount="0"/>
350
+ <line num="24" count="25" type="stmt"/>
351
+ <line num="25" count="25" type="cond" truecount="2" falsecount="0"/>
352
+ <line num="26" count="25" type="stmt"/>
353
+ <line num="39" count="2" type="stmt"/>
354
+ </file>
355
+ <file name="ActivityIntensity.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/activity/ActivityIntensity.tsx">
356
+ <metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
357
+ <line num="13" count="21" type="stmt"/>
358
+ <line num="14" count="25" type="stmt"/>
359
+ <line num="15" count="25" type="stmt"/>
360
+ <line num="17" count="25" type="stmt"/>
361
+ <line num="30" count="2" type="stmt"/>
362
+ </file>
363
+ </package>
364
+ <package name="src.components.mood">
365
+ <metrics statements="24" coveredstatements="24" conditionals="4" coveredconditionals="4" methods="9" coveredmethods="9"/>
366
+ <file name="Emotion.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/mood/Emotion.tsx">
367
+ <metrics statements="11" coveredstatements="11" conditionals="2" coveredconditionals="2" methods="6" coveredmethods="6"/>
368
+ <line num="8" count="2" type="stmt"/>
369
+ <line num="16" count="60" type="stmt"/>
370
+ <line num="17" count="8" type="cond" truecount="2" falsecount="0"/>
371
+ <line num="20" count="60" type="stmt"/>
372
+ <line num="21" count="1350" type="stmt"/>
373
+ <line num="25" count="135" type="stmt"/>
374
+ <line num="27" count="675" type="stmt"/>
375
+ <line num="28" count="675" type="stmt"/>
376
+ <line num="30" count="8" type="stmt"/>
377
+ <line num="41" count="135" type="stmt"/>
378
+ <line num="52" count="2" type="stmt"/>
379
+ </file>
380
+ <file name="MoodIcon.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/components/mood/MoodIcon.tsx">
381
+ <metrics statements="13" coveredstatements="13" conditionals="2" coveredconditionals="2" methods="3" coveredmethods="3"/>
382
+ <line num="5" count="3" type="stmt"/>
383
+ <line num="13" count="3" type="stmt"/>
384
+ <line num="21" count="3" type="stmt"/>
385
+ <line num="30" count="305" type="stmt"/>
386
+ <line num="31" count="685" type="cond" truecount="2" falsecount="0"/>
387
+ <line num="32" count="19" type="stmt"/>
388
+ <line num="34" count="666" type="stmt"/>
389
+ <line num="37" count="305" type="stmt"/>
390
+ <line num="38" count="13" type="stmt"/>
391
+ <line num="42" count="685" type="stmt"/>
392
+ <line num="43" count="685" type="stmt"/>
393
+ <line num="44" count="685" type="stmt"/>
394
+ <line num="52" count="3" type="stmt"/>
395
+ </file>
396
+ </package>
397
+ <package name="src.locale">
398
+ <metrics statements="6" coveredstatements="6" conditionals="4" coveredconditionals="4" methods="1" coveredmethods="1"/>
399
+ <file name="i18nUtils.ts" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/locale/i18nUtils.ts">
400
+ <metrics statements="6" coveredstatements="6" conditionals="4" coveredconditionals="4" methods="1" coveredmethods="1"/>
401
+ <line num="7" count="15" type="stmt"/>
402
+ <line num="16" count="15" type="stmt"/>
403
+ <line num="22" count="63" type="cond" truecount="2" falsecount="0"/>
404
+ <line num="24" count="63" type="cond" truecount="2" falsecount="0"/>
405
+ <line num="25" count="63" type="stmt"/>
406
+ <line num="26" count="63" type="stmt"/>
407
+ </file>
408
+ </package>
409
+ <package name="src.utils">
410
+ <metrics statements="266" coveredstatements="266" conditionals="165" coveredconditionals="165" methods="93" coveredmethods="93"/>
411
+ <file name="AttentionMessages.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/utils/AttentionMessages.tsx">
412
+ <metrics statements="36" coveredstatements="36" conditionals="2" coveredconditionals="2" methods="22" coveredmethods="22"/>
413
+ <line num="6" count="5" type="stmt"/>
414
+ <line num="7" count="26" type="stmt"/>
415
+ <line num="8" count="6" type="stmt"/>
416
+ <line num="9" count="4" type="stmt"/>
417
+ <line num="10" count="2" type="stmt"/>
418
+ <line num="12" count="4" type="stmt"/>
419
+ <line num="13" count="2" type="stmt"/>
420
+ <line num="15" count="2" type="stmt"/>
421
+ <line num="25" count="6" type="stmt"/>
422
+ <line num="28" count="5" type="stmt"/>
423
+ <line num="31" count="27" type="stmt"/>
424
+ <line num="35" count="5" type="stmt"/>
425
+ <line num="36" count="27" type="stmt"/>
426
+ <line num="39" count="6" type="stmt"/>
427
+ <line num="40" count="5" type="stmt"/>
428
+ <line num="41" count="42" type="stmt"/>
429
+ <line num="42" count="5" type="stmt"/>
430
+ <line num="43" count="6" type="stmt"/>
431
+ <line num="44" count="5" type="stmt"/>
432
+ <line num="45" count="8" type="stmt"/>
433
+ <line num="48" count="8" type="stmt"/>
434
+ <line num="49" count="8" type="stmt"/>
435
+ <line num="50" count="5" type="stmt"/>
436
+ <line num="51" count="129" type="stmt"/>
437
+ <line num="55" count="5" type="stmt"/>
438
+ <line num="56" count="10" type="stmt"/>
439
+ <line num="64" count="5" type="stmt"/>
440
+ <line num="65" count="12" type="cond" truecount="2" falsecount="0"/>
441
+ <line num="71" count="5" type="stmt"/>
442
+ <line num="72" count="9" type="stmt"/>
443
+ <line num="73" count="5" type="stmt"/>
444
+ <line num="74" count="3" type="stmt"/>
445
+ <line num="75" count="5" type="stmt"/>
446
+ <line num="76" count="6" type="stmt"/>
447
+ <line num="77" count="6" type="stmt"/>
448
+ <line num="78" count="6" type="stmt"/>
449
+ </file>
450
+ <file name="Constants.ts" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/utils/Constants.ts">
451
+ <metrics statements="23" coveredstatements="23" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
452
+ <line num="3" count="13" type="stmt"/>
453
+ <line num="4" count="13" type="stmt"/>
454
+ <line num="5" count="13" type="stmt"/>
455
+ <line num="7" count="13" type="stmt"/>
456
+ <line num="9" count="13" type="stmt"/>
457
+ <line num="10" count="13" type="stmt"/>
458
+ <line num="11" count="13" type="stmt"/>
459
+ <line num="13" count="13" type="stmt"/>
460
+ <line num="14" count="13" type="stmt"/>
461
+ <line num="15" count="13" type="stmt"/>
462
+ <line num="17" count="13" type="stmt"/>
463
+ <line num="18" count="13" type="stmt"/>
464
+ <line num="19" count="13" type="stmt"/>
465
+ <line num="21" count="13" type="stmt"/>
466
+ <line num="22" count="13" type="stmt"/>
467
+ <line num="23" count="13" type="stmt"/>
468
+ <line num="25" count="13" type="stmt"/>
469
+ <line num="26" count="13" type="stmt"/>
470
+ <line num="27" count="13" type="stmt"/>
471
+ <line num="29" count="13" type="stmt"/>
472
+ <line num="30" count="13" type="stmt"/>
473
+ <line num="31" count="13" type="stmt"/>
474
+ <line num="32" count="13" type="stmt"/>
475
+ </file>
476
+ <file name="RecommendationError.tsx" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/utils/RecommendationError.tsx">
477
+ <metrics statements="45" coveredstatements="45" conditionals="0" coveredconditionals="0" methods="22" coveredmethods="22"/>
478
+ <line num="6" count="4" type="stmt"/>
479
+ <line num="12" count="235" type="stmt"/>
480
+ <line num="13" count="235" type="stmt"/>
481
+ <line num="17" count="4" type="stmt"/>
482
+ <line num="18" count="9" type="stmt"/>
483
+ <line num="23" count="4" type="stmt"/>
484
+ <line num="24" count="12" type="stmt"/>
485
+ <line num="29" count="4" type="stmt"/>
486
+ <line num="30" count="7" type="stmt"/>
487
+ <line num="35" count="4" type="stmt"/>
488
+ <line num="36" count="11" type="stmt"/>
489
+ <line num="40" count="4" type="stmt"/>
490
+ <line num="41" count="15" type="stmt"/>
491
+ <line num="46" count="4" type="stmt"/>
492
+ <line num="47" count="12" type="stmt"/>
493
+ <line num="52" count="4" type="stmt"/>
494
+ <line num="53" count="13" type="stmt"/>
495
+ <line num="60" count="4" type="stmt"/>
496
+ <line num="61" count="12" type="stmt"/>
497
+ <line num="66" count="4" type="stmt"/>
498
+ <line num="67" count="12" type="stmt"/>
499
+ <line num="72" count="4" type="stmt"/>
500
+ <line num="73" count="24" type="stmt"/>
501
+ <line num="77" count="4" type="stmt"/>
502
+ <line num="78" count="12" type="stmt"/>
503
+ <line num="84" count="4" type="stmt"/>
504
+ <line num="85" count="12" type="stmt"/>
505
+ <line num="90" count="4" type="stmt"/>
506
+ <line num="91" count="12" type="stmt"/>
507
+ <line num="96" count="4" type="stmt"/>
508
+ <line num="97" count="6" type="stmt"/>
509
+ <line num="102" count="4" type="stmt"/>
510
+ <line num="103" count="9" type="stmt"/>
511
+ <line num="108" count="4" type="stmt"/>
512
+ <line num="109" count="4" type="stmt"/>
513
+ <line num="114" count="4" type="stmt"/>
514
+ <line num="115" count="12" type="stmt"/>
515
+ <line num="120" count="4" type="stmt"/>
516
+ <line num="121" count="9" type="stmt"/>
517
+ <line num="126" count="4" type="stmt"/>
518
+ <line num="127" count="16" type="stmt"/>
519
+ <line num="131" count="4" type="stmt"/>
520
+ <line num="132" count="8" type="stmt"/>
521
+ <line num="136" count="4" type="stmt"/>
522
+ <line num="137" count="8" type="stmt"/>
523
+ </file>
524
+ <file name="RecommendationUtils.ts" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/utils/RecommendationUtils.ts">
525
+ <metrics statements="44" coveredstatements="44" conditionals="85" coveredconditionals="85" methods="6" coveredmethods="6"/>
526
+ <line num="10" count="231" type="cond" truecount="2" falsecount="0"/>
527
+ <line num="11" count="3" type="stmt"/>
528
+ <line num="13" count="228" type="cond" truecount="4" falsecount="0"/>
529
+ <line num="14" count="31" type="stmt"/>
530
+ <line num="16" count="197" type="cond" truecount="4" falsecount="0"/>
531
+ <line num="17" count="4" type="stmt"/>
532
+ <line num="19" count="193" type="cond" truecount="4" falsecount="0"/>
533
+ <line num="20" count="2" type="stmt"/>
534
+ <line num="22" count="191" type="cond" truecount="4" falsecount="0"/>
535
+ <line num="23" count="1" type="stmt"/>
536
+ <line num="25" count="190" type="cond" truecount="4" falsecount="0"/>
537
+ <line num="26" count="149" type="stmt"/>
538
+ <line num="28" count="41" type="cond" truecount="4" falsecount="0"/>
539
+ <line num="29" count="27" type="stmt"/>
540
+ <line num="31" count="14" type="cond" truecount="2" falsecount="0"/>
541
+ <line num="36" count="2" type="stmt"/>
542
+ <line num="38" count="12" type="cond" truecount="4" falsecount="0"/>
543
+ <line num="39" count="10" type="stmt"/>
544
+ <line num="41" count="2" type="stmt"/>
545
+ <line num="50" count="103" type="cond" truecount="2" falsecount="0"/>
546
+ <line num="51" count="103" type="cond" truecount="10" falsecount="0"/>
547
+ <line num="55" count="20" type="stmt"/>
548
+ <line num="61" count="67" type="cond" truecount="4" falsecount="0"/>
549
+ <line num="65" count="12" type="cond" truecount="2" falsecount="0"/>
550
+ <line num="70" count="4" type="stmt"/>
551
+ <line num="75" count="182" type="stmt"/>
552
+ <line num="76" count="182" type="stmt"/>
553
+ <line num="77" count="182" type="stmt"/>
554
+ <line num="78" count="182" type="cond" truecount="10" falsecount="0"/>
555
+ <line num="82" count="140" type="stmt"/>
556
+ <line num="85" count="2" type="cond" truecount="2" falsecount="0"/>
557
+ <line num="90" count="30" type="cond" truecount="4" falsecount="0"/>
558
+ <line num="95" count="6" type="cond" truecount="2" falsecount="0"/>
559
+ <line num="98" count="2" type="cond" truecount="2" falsecount="0"/>
560
+ <line num="102" count="2" type="stmt"/>
561
+ <line num="107" count="15" type="cond" truecount="4" falsecount="0"/>
562
+ <line num="108" count="13" type="stmt"/>
563
+ <line num="109" count="13" type="cond" truecount="2" falsecount="0"/>
564
+ <line num="110" count="12" type="stmt"/>
565
+ <line num="114" count="3" type="stmt"/>
566
+ <line num="118" count="199" type="stmt"/>
567
+ <line num="119" count="199" type="stmt"/>
568
+ <line num="125" count="126" type="cond" truecount="2" falsecount="0"/>
569
+ <line num="128" count="126" type="cond" truecount="2" falsecount="0"/>
570
+ </file>
571
+ <file name="Translations.ts" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/utils/Translations.ts">
572
+ <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="3" coveredmethods="3"/>
573
+ <line num="5" count="2" type="stmt"/>
574
+ <line num="6" count="5" type="stmt"/>
575
+ <line num="7" count="21" type="stmt"/>
576
+ <line num="8" count="5" type="stmt"/>
577
+ </file>
578
+ <file name="Utils.ts" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/utils/Utils.ts">
579
+ <metrics statements="22" coveredstatements="22" conditionals="12" coveredconditionals="12" methods="9" coveredmethods="9"/>
580
+ <line num="4" count="9" type="stmt"/>
581
+ <line num="5" count="9" type="stmt"/>
582
+ <line num="9" count="101" type="cond" truecount="4" falsecount="0"/>
583
+ <line num="11" count="8" type="stmt"/>
584
+ <line num="14" count="64" type="stmt"/>
585
+ <line num="17" count="28" type="stmt"/>
586
+ <line num="20" count="1" type="stmt"/>
587
+ <line num="25" count="98" type="stmt"/>
588
+ <line num="26" count="97" type="stmt"/>
589
+ <line num="30" count="802" type="cond" truecount="2" falsecount="0"/>
590
+ <line num="31" count="18" type="stmt"/>
591
+ <line num="34" count="784" type="cond" truecount="2" falsecount="0"/>
592
+ <line num="38" count="6" type="stmt"/>
593
+ <line num="41" count="122" type="cond" truecount="2" falsecount="0"/>
594
+ <line num="45" count="7" type="stmt"/>
595
+ <line num="48" count="122" type="cond" truecount="2" falsecount="0"/>
596
+ <line num="51" count="9" type="stmt"/>
597
+ <line num="52" count="256" type="stmt"/>
598
+ <line num="53" count="256" type="stmt"/>
599
+ <line num="54" count="256" type="stmt"/>
600
+ <line num="58" count="182" type="stmt"/>
601
+ <line num="59" count="182" type="stmt"/>
602
+ </file>
603
+ <file name="Validations.ts" path="/home/runner/work/hedia-recommendation-screen/hedia-recommendation-screen/src/utils/Validations.ts">
604
+ <metrics statements="92" coveredstatements="92" conditionals="66" coveredconditionals="66" methods="31" coveredmethods="31"/>
605
+ <line num="46" count="2" type="stmt"/>
606
+ <line num="47" count="2" type="stmt"/>
607
+ <line num="50" count="55" type="stmt"/>
608
+ <line num="51" count="55" type="stmt"/>
609
+ <line num="53" count="55" type="stmt"/>
610
+ <line num="54" count="55" type="stmt"/>
611
+ <line num="56" count="55" type="stmt"/>
612
+ <line num="57" count="55" type="stmt"/>
613
+ <line num="58" count="55" type="stmt"/>
614
+ <line num="59" count="54" type="stmt"/>
615
+ <line num="60" count="54" type="cond" truecount="4" falsecount="0"/>
616
+ <line num="61" count="5" type="stmt"/>
617
+ <line num="66" count="65" type="cond" truecount="2" falsecount="0"/>
618
+ <line num="67" count="5" type="stmt"/>
619
+ <line num="71" count="61" type="cond" truecount="2" falsecount="0"/>
620
+ <line num="72" count="1" type="stmt"/>
621
+ <line num="74" count="60" type="cond" truecount="2" falsecount="0"/>
622
+ <line num="75" count="59" type="cond" truecount="2" falsecount="0"/>
623
+ <line num="76" count="4" type="stmt"/>
624
+ <line num="82" count="61" type="stmt"/>
625
+ <line num="83" count="74" type="stmt"/>
626
+ <line num="85" count="61" type="cond" truecount="2" falsecount="0"/>
627
+ <line num="86" count="3" type="stmt"/>
628
+ <line num="91" count="65" type="stmt"/>
629
+ <line num="92" count="60" type="cond" truecount="2" falsecount="0"/>
630
+ <line num="93" count="3" type="stmt"/>
631
+ <line num="97" count="66" type="stmt"/>
632
+ <line num="98" count="60" type="cond" truecount="2" falsecount="0"/>
633
+ <line num="99" count="3" type="stmt"/>
634
+ <line num="104" count="63" type="cond" truecount="2" falsecount="0"/>
635
+ <line num="105" count="4" type="stmt"/>
636
+ <line num="110" count="55" type="stmt"/>
637
+ <line num="111" count="55" type="stmt"/>
638
+ <line num="112" count="55" type="stmt"/>
639
+ <line num="113" count="55" type="stmt"/>
640
+ <line num="114" count="55" type="stmt"/>
641
+ <line num="115" count="55" type="stmt"/>
642
+ <line num="116" count="55" type="stmt"/>
643
+ <line num="117" count="55" type="stmt"/>
644
+ <line num="118" count="55" type="stmt"/>
645
+ <line num="122" count="57" type="cond" truecount="2" falsecount="0"/>
646
+ <line num="123" count="7" type="stmt"/>
647
+ <line num="124" count="6" type="stmt"/>
648
+ <line num="125" count="6" type="stmt"/>
649
+ <line num="126" count="6" type="stmt"/>
650
+ <line num="127" count="6" type="stmt"/>
651
+ <line num="132" count="57" type="cond" truecount="4" falsecount="0"/>
652
+ <line num="133" count="2" type="stmt"/>
653
+ <line num="138" count="61" type="stmt"/>
654
+ <line num="139" count="75" type="cond" truecount="2" falsecount="0"/>
655
+ <line num="140" count="3" type="stmt"/>
656
+ <line num="146" count="61" type="stmt"/>
657
+ <line num="147" count="76" type="cond" truecount="2" falsecount="0"/>
658
+ <line num="148" count="3" type="stmt"/>
659
+ <line num="154" count="14" type="cond" truecount="2" falsecount="0"/>
660
+ <line num="155" count="4" type="stmt"/>
661
+ <line num="160" count="13" type="stmt"/>
662
+ <line num="161" count="31" type="stmt"/>
663
+ <line num="163" count="13" type="cond" truecount="2" falsecount="0"/>
664
+ <line num="164" count="4" type="stmt"/>
665
+ <line num="169" count="45" type="stmt"/>
666
+ <line num="170" count="15" type="cond" truecount="2" falsecount="0"/>
667
+ <line num="171" count="5" type="stmt"/>
668
+ <line num="176" count="11" type="stmt"/>
669
+ <line num="179" count="11" type="cond" truecount="2" falsecount="0"/>
670
+ <line num="180" count="3" type="stmt"/>
671
+ <line num="185" count="12" type="stmt"/>
672
+ <line num="186" count="49" type="stmt"/>
673
+ <line num="187" count="49" type="stmt"/>
674
+ <line num="188" count="117" type="stmt"/>
675
+ <line num="189" count="117" type="stmt"/>
676
+ <line num="190" count="117" type="cond" truecount="4" falsecount="0"/>
677
+ <line num="191" count="11" type="cond" truecount="4" falsecount="0"/>
678
+ <line num="192" count="1" type="stmt"/>
679
+ <line num="194" count="106" type="cond" truecount="2" falsecount="0"/>
680
+ <line num="195" count="2" type="stmt"/>
681
+ <line num="202" count="14" type="cond" truecount="2" falsecount="0"/>
682
+ <line num="203" count="4" type="stmt"/>
683
+ <line num="208" count="63" type="cond" truecount="2" falsecount="0"/>
684
+ <line num="209" count="61" type="cond" truecount="2" falsecount="0"/>
685
+ <line num="210" count="4" type="stmt"/>
686
+ <line num="216" count="63" type="cond" truecount="2" falsecount="0"/>
687
+ <line num="217" count="4" type="stmt"/>
688
+ <line num="222" count="63" type="cond" truecount="2" falsecount="0"/>
689
+ <line num="223" count="61" type="cond" truecount="2" falsecount="0"/>
690
+ <line num="224" count="4" type="stmt"/>
691
+ <line num="230" count="63" type="cond" truecount="2" falsecount="0"/>
692
+ <line num="231" count="4" type="stmt"/>
693
+ <line num="236" count="63" type="cond" truecount="2" falsecount="0"/>
694
+ <line num="237" count="4" type="stmt"/>
695
+ <line num="242" count="63" type="cond" truecount="2" falsecount="0"/>
696
+ <line num="243" count="4" type="stmt"/>
697
+ </file>
698
+ </package>
699
+ </project>
700
+ </coverage>