@hedia/recommendation-screen 2.1.15 → 2.1.16

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