@tomei/sso 0.63.0 → 0.64.0-dev.1

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 (150) hide show
  1. package/.commitlintrc.json +22 -22
  2. package/.gitlab-ci.yml +16 -16
  3. package/.husky/commit-msg +9 -15
  4. package/.husky/pre-commit +7 -7
  5. package/.prettierrc +4 -4
  6. package/Jenkinsfile +57 -57
  7. package/README.md +23 -23
  8. package/__tests__/unit/components/group/group.spec.ts +79 -79
  9. package/__tests__/unit/components/group-object-privilege/group-object-privilege.spec.ts +88 -88
  10. package/__tests__/unit/components/group-privilege/group-privilege.spec.ts +68 -68
  11. package/__tests__/unit/components/group-reporting-user/group-reporting-user.spec.ts +66 -66
  12. package/__tests__/unit/components/group-system-access/group-system-access.spec.ts +83 -83
  13. package/__tests__/unit/components/login-user/l.spec.ts +746 -746
  14. package/__tests__/unit/components/login-user/login.spec.ts +1164 -1164
  15. package/__tests__/unit/components/password-hash/password-hash.service.spec.ts +31 -31
  16. package/__tests__/unit/components/system/system.spec.ts +254 -254
  17. package/__tests__/unit/components/system-privilege/system-privilege.spec.ts +83 -83
  18. package/__tests__/unit/components/user-group/user-group.spec.ts +86 -86
  19. package/__tests__/unit/components/user-object-privilege/user-object-privilege.spec.ts +78 -78
  20. package/__tests__/unit/components/user-privilege/user-privilege.spec.ts +72 -72
  21. package/__tests__/unit/components/user-system-access/user-system-access.spec.ts +89 -89
  22. package/__tests__/unit/redis-client/redis.service.spec.ts +23 -23
  23. package/__tests__/unit/session/session.service.spec.ts +47 -47
  24. package/__tests__/unit/system-privilege/system-privilage.spec.ts +91 -91
  25. package/create-sso-user.sql +39 -39
  26. package/dist/__tests__/unit/components/group-object-privilege/group-object-privilege.spec.js +1 -1
  27. package/dist/__tests__/unit/components/group-object-privilege/group-object-privilege.spec.js.map +1 -1
  28. package/dist/__tests__/unit/components/group-privilege/group-privilege.spec.js +2 -2
  29. package/dist/__tests__/unit/components/group-privilege/group-privilege.spec.js.map +1 -1
  30. package/dist/__tests__/unit/components/group-privilege/group-privilege.test.d.ts +1 -0
  31. package/dist/__tests__/unit/components/group-privilege/group-privilege.test.js +71 -0
  32. package/dist/__tests__/unit/components/group-privilege/group-privilege.test.js.map +1 -0
  33. package/dist/__tests__/unit/components/group-reporting-user/group-reporting-user.spec.js +2 -2
  34. package/dist/__tests__/unit/components/group-reporting-user/group-reporting-user.spec.js.map +1 -1
  35. package/dist/__tests__/unit/components/login-user/login-user.spec.d.ts +0 -0
  36. package/dist/__tests__/unit/components/login-user/login-user.spec.js +6 -0
  37. package/dist/__tests__/unit/components/login-user/login-user.spec.js.map +1 -0
  38. package/dist/__tests__/unit/components/system/system.spec.js +4 -4
  39. package/dist/__tests__/unit/components/system/system.spec.js.map +1 -1
  40. package/dist/__tests__/unit/session/session.service.spec.js +2 -2
  41. package/dist/__tests__/unit/session/session.service.spec.js.map +1 -1
  42. package/dist/src/components/login-user/user.js +3 -9
  43. package/dist/src/components/login-user/user.js.map +1 -1
  44. package/dist/tsconfig.tsbuildinfo +1 -1
  45. package/eslint.config.mjs +58 -58
  46. package/jest.config.js +14 -14
  47. package/migrations/20240314080602-create-user-table.js +124 -124
  48. package/migrations/20240314080603-create-user-group-table.js +85 -85
  49. package/migrations/20240314080604-create-user-user-group-table.js +55 -55
  50. package/migrations/20240314080605-create-login-history-table.js +53 -53
  51. package/migrations/20240527064925-create-system-table.js +78 -78
  52. package/migrations/20240527064926-create-system-privilege-table.js +71 -71
  53. package/migrations/20240527065342-create-group-table.js +93 -93
  54. package/migrations/20240527065633-create-group-reporting-user-table.js +76 -76
  55. package/migrations/20240528011551-create-group-system-access-table.js +72 -72
  56. package/migrations/20240528023018-user-system-access-table.js +75 -75
  57. package/migrations/20240528032229-user-privilege-table.js +76 -76
  58. package/migrations/20240528063003-create-group-privilege-table.js +76 -76
  59. package/migrations/20240528063051-create-group-object-privilege-table.js +84 -84
  60. package/migrations/20240528063107-create-user-object-privilege-table.js +84 -84
  61. package/migrations/20240528063108-create-api-key-table.js +85 -85
  62. package/migrations/20241104104802-create-building-table.js +95 -95
  63. package/migrations/20250108091132-add-area-manager-user-id-to-building-table.js +14 -14
  64. package/migrations/20250108091133-add-passcode-to-user-table.js +36 -36
  65. package/migrations/20250210115636-create-user-reporting-hierarchy.js +76 -76
  66. package/migrations/20250326043818-crate-user-password-history.js +42 -42
  67. package/migrations/20250610070720-added-MFBypassYN-to-sso-user.js +30 -30
  68. package/migrations/20250805085707-add-bulk-approval-code-to-sso-user.js +29 -0
  69. package/package.json +87 -90
  70. package/sampledotenv +7 -7
  71. package/src/components/login-user/user.ts +3 -9
  72. package/tsconfig.build.json +5 -5
  73. package/tsconfig.json +23 -23
  74. package/coverage/clover.xml +0 -1452
  75. package/coverage/coverage-final.json +0 -47
  76. package/coverage/lcov-report/base.css +0 -224
  77. package/coverage/lcov-report/block-navigation.js +0 -87
  78. package/coverage/lcov-report/components/group/group.repository.ts.html +0 -118
  79. package/coverage/lcov-report/components/group/group.ts.html +0 -328
  80. package/coverage/lcov-report/components/group/index.html +0 -131
  81. package/coverage/lcov-report/components/group-object-privilege/group-object-privilege.repository.ts.html +0 -118
  82. package/coverage/lcov-report/components/group-object-privilege/group-object-privilege.ts.html +0 -322
  83. package/coverage/lcov-report/components/group-object-privilege/index.html +0 -131
  84. package/coverage/lcov-report/components/group-privilege/group-privilege.repository.ts.html +0 -118
  85. package/coverage/lcov-report/components/group-privilege/group-privilege.ts.html +0 -304
  86. package/coverage/lcov-report/components/group-privilege/index.html +0 -131
  87. package/coverage/lcov-report/components/group-reporting-user/group-reporting-user.repository.ts.html +0 -118
  88. package/coverage/lcov-report/components/group-reporting-user/group-reporting-user.ts.html +0 -328
  89. package/coverage/lcov-report/components/group-reporting-user/index.html +0 -131
  90. package/coverage/lcov-report/components/group-system-access/group-system-access.repository.ts.html +0 -118
  91. package/coverage/lcov-report/components/group-system-access/group-system-access.ts.html +0 -310
  92. package/coverage/lcov-report/components/group-system-access/index.html +0 -131
  93. package/coverage/lcov-report/components/login-history/index.html +0 -116
  94. package/coverage/lcov-report/components/login-history/login-history.repository.ts.html +0 -118
  95. package/coverage/lcov-report/components/login-user/index.html +0 -131
  96. package/coverage/lcov-report/components/login-user/login-user.ts.html +0 -5015
  97. package/coverage/lcov-report/components/login-user/user.repository.ts.html +0 -118
  98. package/coverage/lcov-report/components/password-hash/index.html +0 -116
  99. package/coverage/lcov-report/components/password-hash/password-hash.service.ts.html +0 -127
  100. package/coverage/lcov-report/components/system/index.html +0 -131
  101. package/coverage/lcov-report/components/system/system.repository.ts.html +0 -118
  102. package/coverage/lcov-report/components/system/system.ts.html +0 -910
  103. package/coverage/lcov-report/components/system-privilege/index.html +0 -131
  104. package/coverage/lcov-report/components/system-privilege/system-privilege.repository.ts.html +0 -121
  105. package/coverage/lcov-report/components/system-privilege/system-privilege.ts.html +0 -391
  106. package/coverage/lcov-report/components/user-group/index.html +0 -131
  107. package/coverage/lcov-report/components/user-group/user-group.repository.ts.html +0 -118
  108. package/coverage/lcov-report/components/user-group/user-group.ts.html +0 -355
  109. package/coverage/lcov-report/components/user-object-privilege/index.html +0 -131
  110. package/coverage/lcov-report/components/user-object-privilege/user-object-privilege.repository.ts.html +0 -118
  111. package/coverage/lcov-report/components/user-object-privilege/user-object-privilege.ts.html +0 -313
  112. package/coverage/lcov-report/components/user-privilege/index.html +0 -131
  113. package/coverage/lcov-report/components/user-privilege/user-privilege.repository.ts.html +0 -118
  114. package/coverage/lcov-report/components/user-privilege/user-privilege.ts.html +0 -307
  115. package/coverage/lcov-report/components/user-system-access/index.html +0 -131
  116. package/coverage/lcov-report/components/user-system-access/user-system-access.repository.ts.html +0 -118
  117. package/coverage/lcov-report/components/user-system-access/user-system-access.ts.html +0 -313
  118. package/coverage/lcov-report/enum/group-type.enum.ts.html +0 -109
  119. package/coverage/lcov-report/enum/index.html +0 -161
  120. package/coverage/lcov-report/enum/index.ts.html +0 -94
  121. package/coverage/lcov-report/enum/user-status.enum.ts.html +0 -106
  122. package/coverage/lcov-report/enum/yn.enum.ts.html +0 -97
  123. package/coverage/lcov-report/favicon.png +0 -0
  124. package/coverage/lcov-report/index.html +0 -371
  125. package/coverage/lcov-report/models/group-object-privilege.entity.ts.html +0 -334
  126. package/coverage/lcov-report/models/group-privilege.entity.ts.html +0 -316
  127. package/coverage/lcov-report/models/group-reporting-user.entity.ts.html +0 -340
  128. package/coverage/lcov-report/models/group-system-access.entity.ts.html +0 -325
  129. package/coverage/lcov-report/models/group.entity.ts.html +0 -436
  130. package/coverage/lcov-report/models/index.html +0 -311
  131. package/coverage/lcov-report/models/login-history.entity.ts.html +0 -253
  132. package/coverage/lcov-report/models/staff.entity.ts.html +0 -412
  133. package/coverage/lcov-report/models/system-privilege.entity.ts.html +0 -355
  134. package/coverage/lcov-report/models/system.entity.ts.html +0 -424
  135. package/coverage/lcov-report/models/user-group.entity.ts.html +0 -355
  136. package/coverage/lcov-report/models/user-object-privilege.entity.ts.html +0 -331
  137. package/coverage/lcov-report/models/user-privilege.entity.ts.html +0 -316
  138. package/coverage/lcov-report/models/user-system-access.entity.ts.html +0 -316
  139. package/coverage/lcov-report/models/user.entity.ts.html +0 -523
  140. package/coverage/lcov-report/prettify.css +0 -1
  141. package/coverage/lcov-report/prettify.js +0 -2
  142. package/coverage/lcov-report/redis-client/index.html +0 -116
  143. package/coverage/lcov-report/redis-client/redis.service.ts.html +0 -241
  144. package/coverage/lcov-report/session/index.html +0 -116
  145. package/coverage/lcov-report/session/session.service.ts.html +0 -247
  146. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  147. package/coverage/lcov-report/sorter.js +0 -196
  148. package/coverage/lcov.info +0 -2490
  149. package/coverage/test-report.xml +0 -129
  150. package/sonar-project.properties +0 -23
@@ -1,1452 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <coverage generated="1719298362337" clover="3.2.0">
3
- <project timestamp="1719298362337" name="All files">
4
- <metrics statements="1254" coveredstatements="1064" conditionals="234" coveredconditionals="164" methods="294" coveredmethods="161" elements="1782" coveredelements="1389" complexity="0" loc="1254" ncloc="1254" packages="18" files="46" classes="46"/>
5
- <package name="components.group">
6
- <metrics statements="35" coveredstatements="34" conditionals="28" coveredconditionals="22" methods="7" coveredmethods="7"/>
7
- <file name="group.repository.ts" path="C:\Work\sso\src\components\group\group.repository.ts">
8
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
9
- <line num="1" count="3" type="stmt"/>
10
- <line num="2" count="3" type="stmt"/>
11
- <line num="4" count="3" type="stmt"/>
12
- <line num="9" count="3" type="stmt"/>
13
- </file>
14
- <file name="group.ts" path="C:\Work\sso\src\components\group\group.ts">
15
- <metrics statements="31" coveredstatements="30" conditionals="28" coveredconditionals="22" methods="6" coveredmethods="6"/>
16
- <line num="1" count="1" type="stmt"/>
17
- <line num="2" count="1" type="stmt"/>
18
- <line num="6" count="1" type="stmt"/>
19
- <line num="10" count="1" type="stmt"/>
20
- <line num="24" count="1" type="stmt"/>
21
- <line num="27" count="1" type="stmt"/>
22
- <line num="31" count="1" type="stmt"/>
23
- <line num="35" count="1" type="stmt"/>
24
- <line num="39" count="1" type="stmt"/>
25
- <line num="43" count="1" type="stmt"/>
26
- <line num="44" count="1" type="cond" truecount="1" falsecount="0"/>
27
- <line num="45" count="1" type="stmt"/>
28
- <line num="46" count="1" type="stmt"/>
29
- <line num="47" count="1" type="cond" truecount="3" falsecount="1"/>
30
- <line num="48" count="1" type="cond" truecount="3" falsecount="1"/>
31
- <line num="49" count="1" type="cond" truecount="3" falsecount="1"/>
32
- <line num="50" count="1" type="cond" truecount="3" falsecount="1"/>
33
- <line num="51" count="1" type="cond" truecount="3" falsecount="1"/>
34
- <line num="52" count="1" type="cond" truecount="3" falsecount="1"/>
35
- <line num="53" count="1" type="stmt"/>
36
- <line num="54" count="1" type="stmt"/>
37
- <line num="55" count="1" type="stmt"/>
38
- <line num="56" count="1" type="stmt"/>
39
- <line num="61" count="3" type="stmt"/>
40
- <line num="62" count="3" type="cond" truecount="1" falsecount="0"/>
41
- <line num="63" count="3" type="stmt"/>
42
- <line num="66" count="2" type="cond" truecount="2" falsecount="0"/>
43
- <line num="67" count="1" type="stmt"/>
44
- <line num="69" count="1" type="stmt"/>
45
- <line num="72" count="0" type="stmt"/>
46
- <line num="74" count="2" type="stmt"/>
47
- </file>
48
- </package>
49
- <package name="components.group-object-privilege">
50
- <metrics statements="32" coveredstatements="32" conditionals="4" coveredconditionals="4" methods="7" coveredmethods="7"/>
51
- <file name="group-object-privilege.repository.ts" path="C:\Work\sso\src\components\group-object-privilege\group-object-privilege.repository.ts">
52
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
53
- <line num="1" count="3" type="stmt"/>
54
- <line num="2" count="3" type="stmt"/>
55
- <line num="4" count="3" type="stmt"/>
56
- <line num="9" count="3" type="stmt"/>
57
- </file>
58
- <file name="group-object-privilege.ts" path="C:\Work\sso\src\components\group-object-privilege\group-object-privilege.ts">
59
- <metrics statements="28" coveredstatements="28" conditionals="4" coveredconditionals="4" methods="6" coveredmethods="6"/>
60
- <line num="1" count="1" type="stmt"/>
61
- <line num="2" count="1" type="stmt"/>
62
- <line num="5" count="1" type="stmt"/>
63
- <line num="6" count="8" type="stmt"/>
64
- <line num="19" count="3" type="stmt"/>
65
- <line num="23" count="3" type="stmt"/>
66
- <line num="27" count="3" type="stmt"/>
67
- <line num="31" count="3" type="stmt"/>
68
- <line num="34" count="1" type="stmt"/>
69
- <line num="37" count="8" type="stmt"/>
70
- <line num="38" count="8" type="cond" truecount="1" falsecount="0"/>
71
- <line num="39" count="1" type="stmt"/>
72
- <line num="41" count="1" type="stmt"/>
73
- <line num="42" count="1" type="stmt"/>
74
- <line num="43" count="1" type="stmt"/>
75
- <line num="44" count="1" type="stmt"/>
76
- <line num="45" count="1" type="stmt"/>
77
- <line num="46" count="1" type="stmt"/>
78
- <line num="47" count="1" type="stmt"/>
79
- <line num="48" count="1" type="stmt"/>
80
- <line num="56" count="3" type="stmt"/>
81
- <line num="57" count="3" type="cond" truecount="1" falsecount="0"/>
82
- <line num="58" count="2" type="stmt"/>
83
- <line num="62" count="2" type="cond" truecount="2" falsecount="0"/>
84
- <line num="63" count="1" type="stmt"/>
85
- <line num="67" count="1" type="stmt"/>
86
- <line num="74" count="1" type="stmt"/>
87
- <line num="76" count="1" type="stmt"/>
88
- </file>
89
- </package>
90
- <package name="components.group-privilege">
91
- <metrics statements="32" coveredstatements="32" conditionals="4" coveredconditionals="4" methods="7" coveredmethods="7"/>
92
- <file name="group-privilege.repository.ts" path="C:\Work\sso\src\components\group-privilege\group-privilege.repository.ts">
93
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
94
- <line num="1" count="1" type="stmt"/>
95
- <line num="2" count="1" type="stmt"/>
96
- <line num="4" count="1" type="stmt"/>
97
- <line num="9" count="1" type="stmt"/>
98
- </file>
99
- <file name="group-privilege.ts" path="C:\Work\sso\src\components\group-privilege\group-privilege.ts">
100
- <metrics statements="28" coveredstatements="28" conditionals="4" coveredconditionals="4" methods="6" coveredmethods="6"/>
101
- <line num="1" count="1" type="stmt"/>
102
- <line num="2" count="1" type="stmt"/>
103
- <line num="5" count="1" type="stmt"/>
104
- <line num="6" count="2" type="stmt"/>
105
- <line num="9" count="2" type="stmt"/>
106
- <line num="20" count="2" type="stmt"/>
107
- <line num="24" count="2" type="stmt"/>
108
- <line num="28" count="2" type="stmt"/>
109
- <line num="32" count="2" type="stmt"/>
110
- <line num="35" count="1" type="stmt"/>
111
- <line num="38" count="2" type="stmt"/>
112
- <line num="39" count="2" type="cond" truecount="1" falsecount="0"/>
113
- <line num="40" count="1" type="stmt"/>
114
- <line num="41" count="1" type="stmt"/>
115
- <line num="42" count="1" type="stmt"/>
116
- <line num="43" count="1" type="stmt"/>
117
- <line num="44" count="1" type="stmt"/>
118
- <line num="45" count="1" type="stmt"/>
119
- <line num="46" count="1" type="stmt"/>
120
- <line num="47" count="1" type="stmt"/>
121
- <line num="52" count="3" type="stmt"/>
122
- <line num="53" count="3" type="cond" truecount="1" falsecount="0"/>
123
- <line num="54" count="2" type="stmt"/>
124
- <line num="58" count="2" type="cond" truecount="2" falsecount="0"/>
125
- <line num="59" count="1" type="stmt"/>
126
- <line num="61" count="1" type="stmt"/>
127
- <line num="68" count="1" type="stmt"/>
128
- <line num="70" count="1" type="stmt"/>
129
- </file>
130
- </package>
131
- <package name="components.group-reporting-user">
132
- <metrics statements="33" coveredstatements="29" conditionals="16" coveredconditionals="13" methods="7" coveredmethods="3"/>
133
- <file name="group-reporting-user.repository.ts" path="C:\Work\sso\src\components\group-reporting-user\group-reporting-user.repository.ts">
134
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
135
- <line num="1" count="1" type="stmt"/>
136
- <line num="2" count="1" type="stmt"/>
137
- <line num="4" count="1" type="stmt"/>
138
- <line num="9" count="1" type="stmt"/>
139
- </file>
140
- <file name="group-reporting-user.ts" path="C:\Work\sso\src\components\group-reporting-user\group-reporting-user.ts">
141
- <metrics statements="29" coveredstatements="25" conditionals="16" coveredconditionals="13" methods="6" coveredmethods="2"/>
142
- <line num="1" count="1" type="stmt"/>
143
- <line num="2" count="1" type="stmt"/>
144
- <line num="5" count="1" type="stmt"/>
145
- <line num="8" count="2" type="stmt"/>
146
- <line num="9" count="2" type="stmt"/>
147
- <line num="20" count="1" type="stmt"/>
148
- <line num="23" count="0" type="stmt"/>
149
- <line num="27" count="0" type="stmt"/>
150
- <line num="31" count="0" type="stmt"/>
151
- <line num="35" count="0" type="stmt"/>
152
- <line num="39" count="2" type="stmt"/>
153
- <line num="40" count="2" type="cond" truecount="1" falsecount="0"/>
154
- <line num="41" count="1" type="stmt"/>
155
- <line num="42" count="1" type="stmt"/>
156
- <line num="43" count="1" type="cond" truecount="3" falsecount="1"/>
157
- <line num="44" count="1" type="cond" truecount="3" falsecount="1"/>
158
- <line num="45" count="1" type="cond" truecount="3" falsecount="1"/>
159
- <line num="46" count="1" type="stmt"/>
160
- <line num="47" count="1" type="stmt"/>
161
- <line num="48" count="1" type="stmt"/>
162
- <line num="49" count="1" type="stmt"/>
163
- <line num="54" count="4" type="stmt"/>
164
- <line num="55" count="4" type="cond" truecount="1" falsecount="0"/>
165
- <line num="56" count="3" type="stmt"/>
166
- <line num="62" count="2" type="cond" truecount="2" falsecount="0"/>
167
- <line num="63" count="1" type="stmt"/>
168
- <line num="65" count="1" type="stmt"/>
169
- <line num="72" count="1" type="stmt"/>
170
- <line num="74" count="2" type="stmt"/>
171
- </file>
172
- </package>
173
- <package name="components.group-system-access">
174
- <metrics statements="33" coveredstatements="33" conditionals="4" coveredconditionals="4" methods="7" coveredmethods="7"/>
175
- <file name="group-system-access.repository.ts" path="C:\Work\sso\src\components\group-system-access\group-system-access.repository.ts">
176
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
177
- <line num="1" count="3" type="stmt"/>
178
- <line num="2" count="3" type="stmt"/>
179
- <line num="4" count="3" type="stmt"/>
180
- <line num="9" count="3" type="stmt"/>
181
- </file>
182
- <file name="group-system-access.ts" path="C:\Work\sso\src\components\group-system-access\group-system-access.ts">
183
- <metrics statements="29" coveredstatements="29" conditionals="4" coveredconditionals="4" methods="6" coveredmethods="6"/>
184
- <line num="1" count="1" type="stmt"/>
185
- <line num="2" count="1" type="stmt"/>
186
- <line num="5" count="1" type="stmt"/>
187
- <line num="6" count="8" type="stmt"/>
188
- <line num="7" count="8" type="stmt"/>
189
- <line num="21" count="3" type="stmt"/>
190
- <line num="25" count="3" type="stmt"/>
191
- <line num="29" count="3" type="stmt"/>
192
- <line num="33" count="3" type="stmt"/>
193
- <line num="36" count="1" type="stmt"/>
194
- <line num="39" count="8" type="stmt"/>
195
- <line num="40" count="8" type="cond" truecount="1" falsecount="0"/>
196
- <line num="41" count="5" type="stmt"/>
197
- <line num="42" count="5" type="stmt"/>
198
- <line num="43" count="5" type="stmt"/>
199
- <line num="44" count="5" type="stmt"/>
200
- <line num="45" count="5" type="stmt"/>
201
- <line num="46" count="5" type="stmt"/>
202
- <line num="47" count="5" type="stmt"/>
203
- <line num="48" count="5" type="stmt"/>
204
- <line num="53" count="3" type="stmt"/>
205
- <line num="54" count="3" type="stmt"/>
206
- <line num="55" count="3" type="cond" truecount="1" falsecount="0"/>
207
- <line num="56" count="2" type="stmt"/>
208
- <line num="60" count="2" type="cond" truecount="2" falsecount="0"/>
209
- <line num="61" count="1" type="stmt"/>
210
- <line num="63" count="1" type="stmt"/>
211
- <line num="70" count="1" type="stmt"/>
212
- <line num="72" count="1" type="stmt"/>
213
- </file>
214
- </package>
215
- <package name="components.login-history">
216
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
217
- <file name="login-history.repository.ts" path="C:\Work\sso\src\components\login-history\login-history.repository.ts">
218
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
219
- <line num="1" count="2" type="stmt"/>
220
- <line num="2" count="2" type="stmt"/>
221
- <line num="4" count="2" type="stmt"/>
222
- <line num="9" count="2" type="stmt"/>
223
- </file>
224
- </package>
225
- <package name="components.login-user">
226
- <metrics statements="471" coveredstatements="303" conditionals="103" coveredconditionals="52" methods="83" coveredmethods="68"/>
227
- <file name="login-user.ts" path="C:\Work\sso\src\components\login-user\login-user.ts">
228
- <metrics statements="467" coveredstatements="299" conditionals="103" coveredconditionals="52" methods="82" coveredmethods="67"/>
229
- <line num="1" count="2" type="stmt"/>
230
- <line num="4" count="2" type="stmt"/>
231
- <line num="5" count="2" type="stmt"/>
232
- <line num="6" count="2" type="stmt"/>
233
- <line num="7" count="2" type="stmt"/>
234
- <line num="8" count="2" type="stmt"/>
235
- <line num="11" count="2" type="stmt"/>
236
- <line num="12" count="2" type="stmt"/>
237
- <line num="15" count="2" type="stmt"/>
238
- <line num="16" count="2" type="stmt"/>
239
- <line num="17" count="2" type="stmt"/>
240
- <line num="19" count="2" type="stmt"/>
241
- <line num="20" count="2" type="stmt"/>
242
- <line num="21" count="2" type="stmt"/>
243
- <line num="22" count="2" type="stmt"/>
244
- <line num="23" count="2" type="stmt"/>
245
- <line num="24" count="2" type="stmt"/>
246
- <line num="25" count="2" type="stmt"/>
247
- <line num="27" count="2" type="stmt"/>
248
- <line num="28" count="2" type="stmt"/>
249
- <line num="29" count="2" type="stmt"/>
250
- <line num="30" count="2" type="stmt"/>
251
- <line num="31" count="2" type="stmt"/>
252
- <line num="32" count="2" type="stmt"/>
253
- <line num="34" count="2" type="stmt"/>
254
- <line num="53" count="40" type="stmt"/>
255
- <line num="54" count="40" type="stmt"/>
256
- <line num="55" count="40" type="stmt"/>
257
- <line num="60" count="2" type="stmt"/>
258
- <line num="62" count="2" type="stmt"/>
259
- <line num="63" count="2" type="stmt"/>
260
- <line num="64" count="2" type="stmt"/>
261
- <line num="65" count="2" type="stmt"/>
262
- <line num="66" count="2" type="stmt"/>
263
- <line num="69" count="2" type="stmt"/>
264
- <line num="70" count="2" type="stmt"/>
265
- <line num="71" count="2" type="stmt"/>
266
- <line num="72" count="2" type="stmt"/>
267
- <line num="77" count="1" type="stmt"/>
268
- <line num="81" count="22" type="stmt"/>
269
- <line num="85" count="5" type="stmt"/>
270
- <line num="89" count="5" type="stmt"/>
271
- <line num="93" count="5" type="stmt"/>
272
- <line num="97" count="11" type="stmt"/>
273
- <line num="101" count="11" type="stmt"/>
274
- <line num="105" count="2" type="stmt"/>
275
- <line num="109" count="5" type="stmt"/>
276
- <line num="113" count="2" type="stmt"/>
277
- <line num="117" count="5" type="stmt"/>
278
- <line num="121" count="2" type="stmt"/>
279
- <line num="125" count="5" type="stmt"/>
280
- <line num="129" count="2" type="stmt"/>
281
- <line num="133" count="5" type="stmt"/>
282
- <line num="137" count="2" type="stmt"/>
283
- <line num="141" count="5" type="stmt"/>
284
- <line num="145" count="2" type="stmt"/>
285
- <line num="149" count="5" type="stmt"/>
286
- <line num="153" count="5" type="stmt"/>
287
- <line num="157" count="9" type="stmt"/>
288
- <line num="161" count="2" type="stmt"/>
289
- <line num="165" count="9" type="stmt"/>
290
- <line num="169" count="2" type="stmt"/>
291
- <line num="173" count="5" type="stmt"/>
292
- <line num="177" count="2" type="stmt"/>
293
- <line num="181" count="5" type="stmt"/>
294
- <line num="185" count="2" type="stmt"/>
295
- <line num="189" count="5" type="stmt"/>
296
- <line num="193" count="1" type="stmt"/>
297
- <line num="197" count="5" type="stmt"/>
298
- <line num="201" count="2" type="stmt"/>
299
- <line num="205" count="5" type="stmt"/>
300
- <line num="209" count="1" type="stmt"/>
301
- <line num="213" count="5" type="stmt"/>
302
- <line num="223" count="0" type="stmt"/>
303
- <line num="237" count="40" type="stmt"/>
304
- <line num="238" count="40" type="stmt"/>
305
- <line num="240" count="40" type="cond" truecount="0" falsecount="1"/>
306
- <line num="241" count="0" type="stmt"/>
307
- <line num="244" count="40" type="cond" truecount="1" falsecount="0"/>
308
- <line num="245" count="5" type="stmt"/>
309
- <line num="246" count="5" type="stmt"/>
310
- <line num="247" count="5" type="stmt"/>
311
- <line num="248" count="5" type="stmt"/>
312
- <line num="249" count="5" type="stmt"/>
313
- <line num="250" count="5" type="stmt"/>
314
- <line num="251" count="5" type="stmt"/>
315
- <line num="252" count="5" type="stmt"/>
316
- <line num="253" count="5" type="stmt"/>
317
- <line num="254" count="5" type="stmt"/>
318
- <line num="255" count="5" type="stmt"/>
319
- <line num="256" count="5" type="stmt"/>
320
- <line num="257" count="5" type="stmt"/>
321
- <line num="258" count="5" type="stmt"/>
322
- <line num="259" count="5" type="stmt"/>
323
- <line num="260" count="5" type="stmt"/>
324
- <line num="261" count="5" type="stmt"/>
325
- <line num="262" count="5" type="stmt"/>
326
- <line num="263" count="5" type="stmt"/>
327
- <line num="264" count="5" type="stmt"/>
328
- <line num="265" count="5" type="stmt"/>
329
- <line num="266" count="5" type="stmt"/>
330
- <line num="275" count="21" type="cond" truecount="1" falsecount="0"/>
331
- <line num="276" count="2" type="cond" truecount="0" falsecount="1"/>
332
- <line num="277" count="0" type="stmt"/>
333
- <line num="279" count="2" type="stmt"/>
334
- <line num="290" count="2" type="cond" truecount="1" falsecount="0"/>
335
- <line num="291" count="1" type="stmt"/>
336
- <line num="294" count="1" type="cond" truecount="1" falsecount="1"/>
337
- <line num="295" count="1" type="stmt"/>
338
- <line num="320" count="1" type="stmt"/>
339
- <line num="322" count="0" type="stmt"/>
340
- <line num="325" count="19" type="stmt"/>
341
- <line num="335" count="0" type="stmt"/>
342
- <line num="337" count="0" type="cond" truecount="0" falsecount="1"/>
343
- <line num="339" count="0" type="stmt"/>
344
- <line num="355" count="0" type="cond" truecount="0" falsecount="2"/>
345
- <line num="356" count="0" type="stmt"/>
346
- <line num="381" count="0" type="stmt"/>
347
- <line num="382" count="0" type="stmt"/>
348
- <line num="383" count="0" type="stmt"/>
349
- <line num="384" count="0" type="stmt"/>
350
- <line num="385" count="0" type="stmt"/>
351
- <line num="386" count="0" type="stmt"/>
352
- <line num="387" count="0" type="stmt"/>
353
- <line num="388" count="0" type="stmt"/>
354
- <line num="389" count="0" type="stmt"/>
355
- <line num="390" count="0" type="stmt"/>
356
- <line num="391" count="0" type="stmt"/>
357
- <line num="392" count="0" type="stmt"/>
358
- <line num="393" count="0" type="stmt"/>
359
- <line num="394" count="0" type="stmt"/>
360
- <line num="395" count="0" type="stmt"/>
361
- <line num="396" count="0" type="stmt"/>
362
- <line num="397" count="0" type="stmt"/>
363
- <line num="398" count="0" type="stmt"/>
364
- <line num="399" count="0" type="stmt"/>
365
- <line num="400" count="0" type="stmt"/>
366
- <line num="401" count="0" type="stmt"/>
367
- <line num="402" count="0" type="stmt"/>
368
- <line num="404" count="0" type="stmt"/>
369
- <line num="412" count="0" type="cond" truecount="0" falsecount="3"/>
370
- <line num="413" count="0" type="stmt"/>
371
- <line num="420" count="0" type="stmt"/>
372
- <line num="423" count="0" type="stmt"/>
373
- <line num="429" count="0" type="cond" truecount="0" falsecount="1"/>
374
- <line num="430" count="0" type="stmt"/>
375
- <line num="435" count="0" type="stmt"/>
376
- <line num="436" count="0" type="stmt"/>
377
- <line num="440" count="0" type="cond" truecount="0" falsecount="1"/>
378
- <line num="441" count="0" type="stmt"/>
379
- <line num="445" count="0" type="stmt"/>
380
- <line num="452" count="0" type="cond" truecount="0" falsecount="1"/>
381
- <line num="453" count="0" type="stmt"/>
382
- <line num="457" count="0" type="cond" truecount="0" falsecount="2"/>
383
- <line num="458" count="0" type="stmt"/>
384
- <line num="459" count="0" type="stmt"/>
385
- <line num="461" count="0" type="stmt"/>
386
- <line num="465" count="0" type="stmt"/>
387
- <line num="469" count="0" type="stmt"/>
388
- <line num="474" count="0" type="stmt"/>
389
- <line num="480" count="0" type="stmt"/>
390
- <line num="481" count="0" type="stmt"/>
391
- <line num="482" count="0" type="cond" truecount="0" falsecount="1"/>
392
- <line num="483" count="0" type="stmt"/>
393
- <line num="487" count="0" type="stmt"/>
394
- <line num="515" count="0" type="stmt"/>
395
- <line num="518" count="0" type="stmt"/>
396
- <line num="519" count="0" type="stmt"/>
397
- <line num="523" count="0" type="stmt"/>
398
- <line num="524" count="0" type="stmt"/>
399
- <line num="526" count="0" type="cond" truecount="0" falsecount="2"/>
400
- <line num="527" count="0" type="stmt"/>
401
- <line num="528" count="0" type="stmt"/>
402
- <line num="529" count="0" type="cond" truecount="0" falsecount="2"/>
403
- <line num="533" count="0" type="stmt"/>
404
- <line num="542" count="0" type="stmt"/>
405
- <line num="545" count="0" type="stmt"/>
406
- <line num="548" count="0" type="stmt"/>
407
- <line num="556" count="0" type="stmt"/>
408
- <line num="558" count="0" type="stmt"/>
409
- <line num="567" count="0" type="stmt"/>
410
- <line num="568" count="0" type="stmt"/>
411
- <line num="570" count="0" type="stmt"/>
412
- <line num="579" count="0" type="cond" truecount="0" falsecount="2"/>
413
- <line num="580" count="0" type="stmt"/>
414
- <line num="582" count="0" type="stmt"/>
415
- <line num="596" count="0" type="stmt"/>
416
- <line num="597" count="0" type="stmt"/>
417
- <line num="598" count="0" type="stmt"/>
418
- <line num="603" count="0" type="stmt"/>
419
- <line num="604" count="0" type="cond" truecount="0" falsecount="1"/>
420
- <line num="605" count="0" type="stmt"/>
421
- <line num="606" count="0" type="stmt"/>
422
- <line num="612" count="0" type="cond" truecount="0" falsecount="1"/>
423
- <line num="613" count="0" type="stmt"/>
424
- <line num="616" count="0" type="stmt"/>
425
- <line num="625" count="0" type="stmt"/>
426
- <line num="626" count="0" type="stmt"/>
427
- <line num="633" count="0" type="cond" truecount="0" falsecount="4"/>
428
- <line num="634" count="0" type="stmt"/>
429
- <line num="635" count="0" type="cond" truecount="0" falsecount="1"/>
430
- <line num="636" count="0" type="stmt"/>
431
- <line num="660" count="0" type="stmt"/>
432
- <line num="668" count="0" type="stmt"/>
433
- <line num="669" count="0" type="stmt"/>
434
- <line num="676" count="0" type="cond" truecount="0" falsecount="1"/>
435
- <line num="677" count="0" type="stmt"/>
436
- <line num="689" count="0" type="stmt"/>
437
- <line num="695" count="0" type="stmt"/>
438
- <line num="702" count="0" type="stmt"/>
439
- <line num="729" count="0" type="stmt"/>
440
- <line num="730" count="0" type="stmt"/>
441
- <line num="731" count="0" type="stmt"/>
442
- <line num="736" count="0" type="stmt"/>
443
- <line num="740" count="0" type="stmt"/>
444
- <line num="745" count="0" type="stmt"/>
445
- <line num="747" count="0" type="stmt"/>
446
- <line num="756" count="0" type="stmt"/>
447
- <line num="758" count="0" type="stmt"/>
448
- <line num="785" count="0" type="stmt"/>
449
- <line num="799" count="0" type="stmt"/>
450
- <line num="801" count="0" type="stmt"/>
451
- <line num="802" count="0" type="stmt"/>
452
- <line num="803" count="0" type="stmt"/>
453
- <line num="806" count="0" type="stmt"/>
454
- <line num="807" count="0" type="stmt"/>
455
- <line num="808" count="0" type="stmt"/>
456
- <line num="811" count="0" type="stmt"/>
457
- <line num="814" count="0" type="cond" truecount="0" falsecount="3"/>
458
- <line num="815" count="0" type="stmt"/>
459
- <line num="820" count="0" type="stmt"/>
460
- <line num="823" count="0" type="stmt"/>
461
- <line num="825" count="0" type="stmt"/>
462
- <line num="833" count="2" type="stmt"/>
463
- <line num="834" count="2" type="stmt"/>
464
- <line num="849" count="2" type="stmt"/>
465
- <line num="850" count="1" type="stmt"/>
466
- <line num="852" count="1" type="stmt"/>
467
- <line num="860" count="2" type="stmt"/>
468
- <line num="862" count="2" type="stmt"/>
469
- <line num="876" count="1" type="stmt"/>
470
- <line num="877" count="2" type="stmt"/>
471
- <line num="879" count="1" type="stmt"/>
472
- <line num="881" count="1" type="stmt"/>
473
- <line num="889" count="3" type="stmt"/>
474
- <line num="890" count="3" type="cond" truecount="1" falsecount="0"/>
475
- <line num="891" count="1" type="stmt"/>
476
- <line num="894" count="2" type="stmt"/>
477
- <line num="898" count="2" type="stmt"/>
478
- <line num="899" count="2" type="stmt"/>
479
- <line num="902" count="2" type="cond" truecount="0" falsecount="1"/>
480
- <line num="903" count="0" type="stmt"/>
481
- <line num="906" count="2" type="stmt"/>
482
- <line num="907" count="2" type="stmt"/>
483
- <line num="908" count="2" type="stmt"/>
484
- <line num="910" count="1" type="stmt"/>
485
- <line num="919" count="2" type="stmt"/>
486
- <line num="920" count="2" type="stmt"/>
487
- <line num="924" count="2" type="cond" truecount="1" falsecount="0"/>
488
- <line num="925" count="1" type="stmt"/>
489
- <line num="928" count="1" type="stmt"/>
490
- <line num="929" count="1" type="stmt"/>
491
- <line num="932" count="1" type="cond" truecount="0" falsecount="1"/>
492
- <line num="933" count="0" type="stmt"/>
493
- <line num="936" count="1" type="cond" truecount="0" falsecount="1"/>
494
- <line num="937" count="0" type="stmt"/>
495
- <line num="940" count="1" type="stmt"/>
496
- <line num="942" count="1" type="stmt"/>
497
- <line num="944" count="1" type="stmt"/>
498
- <line num="949" count="0" type="stmt"/>
499
- <line num="950" count="0" type="cond" truecount="0" falsecount="1"/>
500
- <line num="951" count="0" type="stmt"/>
501
- <line num="953" count="0" type="stmt"/>
502
- <line num="956" count="0" type="stmt"/>
503
- <line num="957" count="0" type="stmt"/>
504
- <line num="959" count="0" type="stmt"/>
505
- <line num="960" count="0" type="stmt"/>
506
- <line num="962" count="0" type="stmt"/>
507
- <line num="971" count="2" type="stmt"/>
508
- <line num="974" count="2" type="stmt"/>
509
- <line num="976" count="2" type="stmt"/>
510
- <line num="979" count="2" type="cond" truecount="1" falsecount="0"/>
511
- <line num="980" count="2" type="stmt"/>
512
- <line num="983" count="2" type="cond" truecount="3" falsecount="0"/>
513
- <line num="984" count="2" type="stmt"/>
514
- <line num="985" count="2" type="stmt"/>
515
- <line num="987" count="2" type="cond" truecount="1" falsecount="0"/>
516
- <line num="988" count="2" type="stmt"/>
517
- <line num="991" count="2" type="stmt"/>
518
- <line num="996" count="2" type="cond" truecount="3" falsecount="0"/>
519
- <line num="997" count="1" type="stmt"/>
520
- <line num="1004" count="1" type="stmt"/>
521
- <line num="1010" count="5" type="stmt"/>
522
- <line num="1013" count="5" type="stmt"/>
523
- <line num="1019" count="5" type="cond" truecount="0" falsecount="1"/>
524
- <line num="1028" count="0" type="stmt"/>
525
- <line num="1035" count="5" type="cond" truecount="0" falsecount="1"/>
526
- <line num="1041" count="0" type="stmt"/>
527
- <line num="1057" count="5" type="stmt"/>
528
- <line num="1059" count="5" type="stmt"/>
529
- <line num="1060" count="5" type="stmt"/>
530
- <line num="1061" count="5" type="stmt"/>
531
- <line num="1062" count="5" type="stmt"/>
532
- <line num="1063" count="5" type="stmt"/>
533
- <line num="1064" count="5" type="stmt"/>
534
- <line num="1066" count="5" type="stmt"/>
535
- <line num="1068" count="130" type="stmt"/>
536
- <line num="1069" count="5" type="stmt"/>
537
- <line num="1071" count="130" type="stmt"/>
538
- <line num="1072" count="5" type="stmt"/>
539
- <line num="1074" count="50" type="stmt"/>
540
- <line num="1075" count="5" type="stmt"/>
541
- <line num="1077" count="150" type="stmt"/>
542
- <line num="1079" count="5" type="stmt"/>
543
- <line num="1080" count="5" type="stmt"/>
544
- <line num="1081" count="5" type="stmt"/>
545
- <line num="1082" count="5" type="stmt"/>
546
- <line num="1084" count="5" type="stmt"/>
547
- <line num="1085" count="5" type="stmt"/>
548
- <line num="1088" count="5" type="stmt"/>
549
- <line num="1091" count="5" type="stmt"/>
550
- <line num="1092" count="5" type="stmt"/>
551
- <line num="1093" count="5" type="stmt"/>
552
- <line num="1096" count="5" type="stmt"/>
553
- <line num="1097" count="5" type="stmt"/>
554
- <line num="1100" count="5" type="stmt"/>
555
- <line num="1103" count="5" type="stmt"/>
556
- <line num="1104" count="5" type="stmt"/>
557
- <line num="1110" count="23" type="stmt"/>
558
- <line num="1111" count="23" type="stmt"/>
559
- <line num="1115" count="5" type="stmt"/>
560
- <line num="1116" count="5" type="stmt"/>
561
- <line num="1121" count="77" type="stmt"/>
562
- <line num="1122" count="5" type="stmt"/>
563
- <line num="1123" count="5" type="stmt"/>
564
- <line num="1125" count="0" type="stmt"/>
565
- <line num="1135" count="3" type="stmt"/>
566
- <line num="1138" count="3" type="stmt"/>
567
- <line num="1144" count="3" type="cond" truecount="0" falsecount="1"/>
568
- <line num="1153" count="0" type="stmt"/>
569
- <line num="1161" count="3" type="stmt"/>
570
- <line num="1163" count="3" type="cond" truecount="0" falsecount="1"/>
571
- <line num="1164" count="0" type="stmt"/>
572
- <line num="1168" count="3" type="cond" truecount="1" falsecount="0"/>
573
- <line num="1169" count="1" type="stmt"/>
574
- <line num="1174" count="2" type="stmt"/>
575
- <line num="1175" count="2" type="stmt"/>
576
- <line num="1176" count="6" type="stmt"/>
577
- <line num="1178" count="2" type="cond" truecount="0" falsecount="1"/>
578
- <line num="1179" count="0" type="stmt"/>
579
- <line num="1183" count="2" type="stmt"/>
580
- <line num="1184" count="2" type="stmt"/>
581
- <line num="1185" count="2" type="stmt"/>
582
- <line num="1187" count="52" type="stmt"/>
583
- <line num="1188" count="2" type="cond" truecount="0" falsecount="1"/>
584
- <line num="1189" count="0" type="stmt"/>
585
- <line num="1193" count="2" type="stmt"/>
586
- <line num="1194" count="2" type="stmt"/>
587
- <line num="1195" count="2" type="stmt"/>
588
- <line num="1197" count="20" type="stmt"/>
589
- <line num="1198" count="2" type="cond" truecount="0" falsecount="1"/>
590
- <line num="1199" count="0" type="stmt"/>
591
- <line num="1203" count="2" type="stmt"/>
592
- <line num="1204" count="2" type="stmt"/>
593
- <line num="1205" count="2" type="stmt"/>
594
- <line num="1207" count="60" type="stmt"/>
595
- <line num="1208" count="2" type="cond" truecount="0" falsecount="1"/>
596
- <line num="1209" count="0" type="stmt"/>
597
- <line num="1212" count="1" type="stmt"/>
598
- <line num="1221" count="2" type="stmt"/>
599
- <line num="1222" count="2" type="stmt"/>
600
- <line num="1225" count="2" type="stmt"/>
601
- <line num="1226" count="2" type="stmt"/>
602
- <line num="1228" count="1" type="stmt"/>
603
- <line num="1237" count="3" type="stmt"/>
604
- <line num="1241" count="3" type="stmt"/>
605
- <line num="1242" count="3" type="stmt"/>
606
- <line num="1248" count="3" type="cond" truecount="1" falsecount="0"/>
607
- <line num="1249" count="1" type="stmt"/>
608
- <line num="1258" count="2" type="cond" truecount="1" falsecount="0"/>
609
- <line num="1259" count="1" type="stmt"/>
610
- <line num="1266" count="1" type="stmt"/>
611
- <line num="1274" count="1" type="stmt"/>
612
- <line num="1275" count="1" type="stmt"/>
613
- <line num="1278" count="1" type="stmt"/>
614
- <line num="1302" count="1" type="stmt"/>
615
- <line num="1327" count="1" type="stmt"/>
616
- <line num="1328" count="1" type="stmt"/>
617
- <line num="1335" count="1" type="stmt"/>
618
- <line num="1336" count="1" type="stmt"/>
619
- <line num="1337" count="1" type="stmt"/>
620
- <line num="1338" count="1" type="stmt"/>
621
- <line num="1339" count="1" type="stmt"/>
622
- <line num="1340" count="1" type="stmt"/>
623
- <line num="1341" count="1" type="stmt"/>
624
- <line num="1342" count="1" type="stmt"/>
625
- <line num="1344" count="1" type="stmt"/>
626
- <line num="1345" count="1" type="stmt"/>
627
- <line num="1347" count="2" type="stmt"/>
628
- <line num="1355" count="4" type="stmt"/>
629
- <line num="1360" count="4" type="stmt"/>
630
- <line num="1366" count="4" type="cond" truecount="3" falsecount="0"/>
631
- <line num="1367" count="1" type="stmt"/>
632
- <line num="1375" count="3" type="stmt"/>
633
- <line num="1376" count="3" type="stmt"/>
634
- <line num="1379" count="3" type="cond" truecount="1" falsecount="0"/>
635
- <line num="1380" count="2" type="stmt"/>
636
- <line num="1384" count="3" type="stmt"/>
637
- <line num="1401" count="3" type="cond" truecount="3" falsecount="0"/>
638
- <line num="1402" count="1" type="stmt"/>
639
- <line num="1410" count="2" type="cond" truecount="3" falsecount="0"/>
640
- <line num="1411" count="1" type="stmt"/>
641
- <line num="1419" count="1" type="cond" truecount="0" falsecount="1"/>
642
- <line num="1420" count="0" type="stmt"/>
643
- <line num="1432" count="3" type="stmt"/>
644
- <line num="1437" count="3" type="stmt"/>
645
- <line num="1443" count="3" type="cond" truecount="2" falsecount="1"/>
646
- <line num="1444" count="0" type="stmt"/>
647
- <line num="1454" count="3" type="cond" truecount="1" falsecount="1"/>
648
- <line num="1455" count="3" type="stmt"/>
649
- <line num="1456" count="3" type="stmt"/>
650
- <line num="1458" count="3" type="stmt"/>
651
- <line num="1460" count="3" type="stmt"/>
652
- <line num="1462" count="3" type="cond" truecount="2" falsecount="0"/>
653
- <line num="1463" count="1" type="stmt"/>
654
- <line num="1465" count="2" type="stmt"/>
655
- <line num="1468" count="0" type="cond" truecount="0" falsecount="1"/>
656
- <line num="1469" count="0" type="stmt"/>
657
- <line num="1477" count="1" type="stmt"/>
658
- <line num="1495" count="0" type="stmt"/>
659
- <line num="1496" count="0" type="stmt"/>
660
- <line num="1500" count="0" type="cond" truecount="0" falsecount="1"/>
661
- <line num="1501" count="0" type="stmt"/>
662
- <line num="1505" count="0" type="stmt"/>
663
- <line num="1514" count="0" type="stmt"/>
664
- <line num="1523" count="2" type="stmt"/>
665
- <line num="1531" count="2" type="stmt"/>
666
- <line num="1535" count="2" type="cond" truecount="3" falsecount="0"/>
667
- <line num="1536" count="1" type="stmt"/>
668
- <line num="1537" count="1" type="stmt"/>
669
- <line num="1541" count="1" type="stmt"/>
670
- <line num="1546" count="1" type="stmt"/>
671
- <line num="1548" count="1" type="stmt"/>
672
- <line num="1550" count="1" type="stmt"/>
673
- <line num="1554" count="2" type="stmt"/>
674
- <line num="1563" count="1" type="stmt"/>
675
- <line num="1573" count="2" type="stmt"/>
676
- <line num="1574" count="2" type="cond" truecount="2" falsecount="0"/>
677
- <line num="1575" count="1" type="stmt"/>
678
- <line num="1577" count="1" type="stmt"/>
679
- <line num="1582" count="1" type="stmt"/>
680
- <line num="1585" count="1" type="stmt"/>
681
- <line num="1586" count="1" type="stmt"/>
682
- <line num="1589" count="6" type="stmt"/>
683
- <line num="1592" count="1" type="stmt"/>
684
- <line num="1599" count="0" type="stmt"/>
685
- <line num="1600" count="0" type="stmt"/>
686
- <line num="1604" count="0" type="cond" truecount="0" falsecount="1"/>
687
- <line num="1605" count="0" type="stmt"/>
688
- <line num="1609" count="0" type="stmt"/>
689
- <line num="1610" count="0" type="stmt"/>
690
- <line num="1615" count="0" type="stmt"/>
691
- <line num="1616" count="0" type="cond" truecount="0" falsecount="1"/>
692
- <line num="1617" count="0" type="stmt"/>
693
- <line num="1618" count="0" type="stmt"/>
694
- <line num="1624" count="0" type="stmt"/>
695
- <line num="1639" count="0" type="stmt"/>
696
- </file>
697
- <file name="user.repository.ts" path="C:\Work\sso\src\components\login-user\user.repository.ts">
698
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
699
- <line num="1" count="2" type="stmt"/>
700
- <line num="2" count="2" type="stmt"/>
701
- <line num="4" count="2" type="stmt"/>
702
- <line num="9" count="2" type="stmt"/>
703
- </file>
704
- </package>
705
- <package name="components.password-hash">
706
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="3" coveredmethods="3"/>
707
- <file name="password-hash.service.ts" path="C:\Work\sso\src\components\password-hash\password-hash.service.ts">
708
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="3" coveredmethods="3"/>
709
- <line num="1" count="3" type="stmt"/>
710
- <line num="4" count="3" type="stmt"/>
711
- <line num="8" count="3" type="stmt"/>
712
- <line num="12" count="1" type="stmt"/>
713
- </file>
714
- </package>
715
- <package name="components.system">
716
- <metrics statements="89" coveredstatements="84" conditionals="42" coveredconditionals="35" methods="13" coveredmethods="9"/>
717
- <file name="system.repository.ts" path="C:\Work\sso\src\components\system\system.repository.ts">
718
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
719
- <line num="1" count="3" type="stmt"/>
720
- <line num="2" count="3" type="stmt"/>
721
- <line num="4" count="3" type="stmt"/>
722
- <line num="9" count="18" type="stmt"/>
723
- </file>
724
- <file name="system.ts" path="C:\Work\sso\src\components\system\system.ts">
725
- <metrics statements="85" coveredstatements="80" conditionals="42" coveredconditionals="35" methods="12" coveredmethods="8"/>
726
- <line num="1" count="1" type="stmt"/>
727
- <line num="2" count="1" type="stmt"/>
728
- <line num="5" count="1" type="stmt"/>
729
- <line num="6" count="1" type="stmt"/>
730
- <line num="8" count="1" type="stmt"/>
731
- <line num="10" count="1" type="stmt"/>
732
- <line num="13" count="19" type="stmt"/>
733
- <line num="14" count="19" type="stmt"/>
734
- <line num="30" count="1" type="stmt"/>
735
- <line num="33" count="0" type="stmt"/>
736
- <line num="37" count="0" type="stmt"/>
737
- <line num="41" count="0" type="stmt"/>
738
- <line num="45" count="0" type="stmt"/>
739
- <line num="49" count="19" type="stmt"/>
740
- <line num="50" count="19" type="cond" truecount="1" falsecount="0"/>
741
- <line num="51" count="3" type="stmt"/>
742
- <line num="52" count="3" type="stmt"/>
743
- <line num="53" count="3" type="cond" truecount="3" falsecount="1"/>
744
- <line num="54" count="3" type="cond" truecount="3" falsecount="1"/>
745
- <line num="55" count="3" type="cond" truecount="3" falsecount="1"/>
746
- <line num="56" count="3" type="cond" truecount="3" falsecount="1"/>
747
- <line num="57" count="3" type="cond" truecount="3" falsecount="1"/>
748
- <line num="58" count="3" type="cond" truecount="3" falsecount="1"/>
749
- <line num="59" count="3" type="cond" truecount="3" falsecount="1"/>
750
- <line num="60" count="3" type="stmt"/>
751
- <line num="61" count="3" type="stmt"/>
752
- <line num="62" count="3" type="stmt"/>
753
- <line num="63" count="3" type="stmt"/>
754
- <line num="68" count="4" type="stmt"/>
755
- <line num="69" count="4" type="cond" truecount="1" falsecount="0"/>
756
- <line num="70" count="2" type="stmt"/>
757
- <line num="73" count="2" type="cond" truecount="2" falsecount="0"/>
758
- <line num="74" count="1" type="stmt"/>
759
- <line num="76" count="1" type="stmt"/>
760
- <line num="79" count="2" type="stmt"/>
761
- <line num="81" count="1" type="stmt"/>
762
- <line num="93" count="6" type="stmt"/>
763
- <line num="98" count="6" type="stmt"/>
764
- <line num="99" count="6" type="stmt"/>
765
- <line num="103" count="6" type="cond" truecount="1" falsecount="0"/>
766
- <line num="104" count="1" type="stmt"/>
767
- <line num="109" count="5" type="cond" truecount="1" falsecount="0"/>
768
- <line num="110" count="1" type="stmt"/>
769
- <line num="118" count="4" type="cond" truecount="1" falsecount="0"/>
770
- <line num="119" count="1" type="stmt"/>
771
- <line num="127" count="3" type="cond" truecount="1" falsecount="0"/>
772
- <line num="128" count="1" type="stmt"/>
773
- <line num="137" count="2" type="stmt"/>
774
- <line num="138" count="2" type="stmt"/>
775
- <line num="139" count="2" type="stmt"/>
776
- <line num="140" count="2" type="stmt"/>
777
- <line num="143" count="2" type="stmt"/>
778
- <line num="166" count="1" type="stmt"/>
779
- <line num="179" count="1" type="stmt"/>
780
- <line num="180" count="1" type="stmt"/>
781
- <line num="181" count="1" type="stmt"/>
782
- <line num="182" count="1" type="stmt"/>
783
- <line num="183" count="1" type="stmt"/>
784
- <line num="184" count="1" type="stmt"/>
785
- <line num="185" count="1" type="stmt"/>
786
- <line num="186" count="1" type="stmt"/>
787
- <line num="188" count="5" type="stmt"/>
788
- <line num="197" count="3" type="stmt"/>
789
- <line num="199" count="3" type="stmt"/>
790
- <line num="206" count="2" type="cond" truecount="1" falsecount="0"/>
791
- <line num="207" count="1" type="stmt"/>
792
- <line num="214" count="2" type="stmt"/>
793
- <line num="223" count="3" type="stmt"/>
794
- <line num="225" count="3" type="stmt"/>
795
- <line num="227" count="1" type="stmt"/>
796
- <line num="229" count="2" type="stmt"/>
797
- <line num="241" count="2" type="stmt"/>
798
- <line num="243" count="2" type="stmt"/>
799
- <line num="244" count="2" type="stmt"/>
800
- <line num="245" count="2" type="cond" truecount="1" falsecount="0"/>
801
- <line num="246" count="1" type="stmt"/>
802
- <line num="247" count="1" type="cond" truecount="1" falsecount="0"/>
803
- <line num="248" count="1" type="stmt"/>
804
- <line num="255" count="2" type="cond" truecount="3" falsecount="0"/>
805
- <line num="256" count="1" type="stmt"/>
806
- <line num="257" count="1" type="stmt"/>
807
- <line num="261" count="2" type="stmt"/>
808
- <line num="269" count="2" type="stmt"/>
809
- <line num="270" count="2" type="stmt"/>
810
- <line num="272" count="0" type="stmt"/>
811
- </file>
812
- </package>
813
- <package name="components.system-privilege">
814
- <metrics statements="48" coveredstatements="46" conditionals="4" coveredconditionals="4" methods="11" coveredmethods="9"/>
815
- <file name="system-privilege.repository.ts" path="C:\Work\sso\src\components\system-privilege\system-privilege.repository.ts">
816
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
817
- <line num="1" count="1" type="stmt"/>
818
- <line num="2" count="1" type="stmt"/>
819
- <line num="4" count="1" type="stmt"/>
820
- <line num="9" count="1" type="stmt"/>
821
- </file>
822
- <file name="system-privilege.ts" path="C:\Work\sso\src\components\system-privilege\system-privilege.ts">
823
- <metrics statements="44" coveredstatements="42" conditionals="4" coveredconditionals="4" methods="10" coveredmethods="8"/>
824
- <line num="1" count="1" type="stmt"/>
825
- <line num="2" count="1" type="stmt"/>
826
- <line num="3" count="1" type="stmt"/>
827
- <line num="6" count="1" type="stmt"/>
828
- <line num="7" count="4" type="stmt"/>
829
- <line num="8" count="4" type="stmt"/>
830
- <line num="20" count="3" type="stmt"/>
831
- <line num="24" count="0" type="stmt"/>
832
- <line num="28" count="0" type="stmt"/>
833
- <line num="32" count="3" type="stmt"/>
834
- <line num="36" count="3" type="stmt"/>
835
- <line num="40" count="3" type="stmt"/>
836
- <line num="44" count="3" type="stmt"/>
837
- <line num="48" count="3" type="stmt"/>
838
- <line num="51" count="1" type="stmt"/>
839
- <line num="52" count="1" type="stmt"/>
840
- <line num="55" count="4" type="stmt"/>
841
- <line num="56" count="4" type="cond" truecount="1" falsecount="0"/>
842
- <line num="57" count="1" type="stmt"/>
843
- <line num="58" count="1" type="stmt"/>
844
- <line num="59" count="1" type="stmt"/>
845
- <line num="60" count="1" type="stmt"/>
846
- <line num="61" count="1" type="stmt"/>
847
- <line num="62" count="1" type="stmt"/>
848
- <line num="63" count="1" type="stmt"/>
849
- <line num="64" count="1" type="stmt"/>
850
- <line num="65" count="1" type="stmt"/>
851
- <line num="70" count="3" type="stmt"/>
852
- <line num="71" count="3" type="stmt"/>
853
- <line num="72" count="3" type="cond" truecount="1" falsecount="0"/>
854
- <line num="73" count="2" type="stmt"/>
855
- <line num="79" count="2" type="cond" truecount="2" falsecount="0"/>
856
- <line num="80" count="1" type="stmt"/>
857
- <line num="81" count="1" type="stmt"/>
858
- <line num="82" count="1" type="stmt"/>
859
- <line num="83" count="1" type="stmt"/>
860
- <line num="84" count="1" type="stmt"/>
861
- <line num="85" count="1" type="stmt"/>
862
- <line num="86" count="1" type="stmt"/>
863
- <line num="87" count="1" type="stmt"/>
864
- <line num="88" count="1" type="stmt"/>
865
- <line num="90" count="1" type="stmt"/>
866
- <line num="97" count="2" type="stmt"/>
867
- <line num="99" count="1" type="stmt"/>
868
- </file>
869
- </package>
870
- <package name="components.user-group">
871
- <metrics statements="44" coveredstatements="44" conditionals="4" coveredconditionals="4" methods="7" coveredmethods="7"/>
872
- <file name="user-group.repository.ts" path="C:\Work\sso\src\components\user-group\user-group.repository.ts">
873
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
874
- <line num="1" count="3" type="stmt"/>
875
- <line num="2" count="3" type="stmt"/>
876
- <line num="4" count="3" type="stmt"/>
877
- <line num="9" count="3" type="stmt"/>
878
- </file>
879
- <file name="user-group.ts" path="C:\Work\sso\src\components\user-group\user-group.ts">
880
- <metrics statements="40" coveredstatements="40" conditionals="4" coveredconditionals="4" methods="6" coveredmethods="6"/>
881
- <line num="1" count="1" type="stmt"/>
882
- <line num="2" count="1" type="stmt"/>
883
- <line num="5" count="1" type="stmt"/>
884
- <line num="6" count="5" type="stmt"/>
885
- <line num="7" count="5" type="stmt"/>
886
- <line num="22" count="2" type="stmt"/>
887
- <line num="26" count="2" type="stmt"/>
888
- <line num="30" count="2" type="stmt"/>
889
- <line num="34" count="2" type="stmt"/>
890
- <line num="37" count="1" type="stmt"/>
891
- <line num="40" count="5" type="stmt"/>
892
- <line num="41" count="5" type="cond" truecount="1" falsecount="0"/>
893
- <line num="42" count="3" type="stmt"/>
894
- <line num="43" count="3" type="stmt"/>
895
- <line num="44" count="3" type="stmt"/>
896
- <line num="45" count="3" type="stmt"/>
897
- <line num="46" count="3" type="stmt"/>
898
- <line num="47" count="3" type="stmt"/>
899
- <line num="49" count="3" type="stmt"/>
900
- <line num="50" count="3" type="stmt"/>
901
- <line num="51" count="3" type="stmt"/>
902
- <line num="52" count="3" type="stmt"/>
903
- <line num="57" count="2" type="stmt"/>
904
- <line num="58" count="2" type="stmt"/>
905
- <line num="59" count="2" type="cond" truecount="1" falsecount="0"/>
906
- <line num="60" count="2" type="stmt"/>
907
- <line num="64" count="2" type="cond" truecount="2" falsecount="0"/>
908
- <line num="65" count="1" type="stmt"/>
909
- <line num="66" count="1" type="stmt"/>
910
- <line num="67" count="1" type="stmt"/>
911
- <line num="68" count="1" type="stmt"/>
912
- <line num="69" count="1" type="stmt"/>
913
- <line num="71" count="1" type="stmt"/>
914
- <line num="73" count="1" type="stmt"/>
915
- <line num="74" count="1" type="stmt"/>
916
- <line num="75" count="1" type="stmt"/>
917
- <line num="76" count="1" type="stmt"/>
918
- <line num="78" count="1" type="stmt"/>
919
- <line num="85" count="1" type="stmt"/>
920
- <line num="87" count="1" type="stmt"/>
921
- </file>
922
- </package>
923
- <package name="components.user-object-privilege">
924
- <metrics statements="33" coveredstatements="32" conditionals="4" coveredconditionals="4" methods="7" coveredmethods="7"/>
925
- <file name="user-object-privilege.repository.ts" path="C:\Work\sso\src\components\user-object-privilege\user-object-privilege.repository.ts">
926
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
927
- <line num="1" count="3" type="stmt"/>
928
- <line num="2" count="3" type="stmt"/>
929
- <line num="4" count="3" type="stmt"/>
930
- <line num="9" count="3" type="stmt"/>
931
- </file>
932
- <file name="user-object-privilege.ts" path="C:\Work\sso\src\components\user-object-privilege\user-object-privilege.ts">
933
- <metrics statements="29" coveredstatements="28" conditionals="4" coveredconditionals="4" methods="6" coveredmethods="6"/>
934
- <line num="1" count="1" type="stmt"/>
935
- <line num="2" count="1" type="stmt"/>
936
- <line num="5" count="1" type="stmt"/>
937
- <line num="6" count="6" type="stmt"/>
938
- <line num="19" count="2" type="stmt"/>
939
- <line num="23" count="2" type="stmt"/>
940
- <line num="27" count="2" type="stmt"/>
941
- <line num="31" count="2" type="stmt"/>
942
- <line num="34" count="1" type="stmt"/>
943
- <line num="37" count="6" type="stmt"/>
944
- <line num="38" count="6" type="cond" truecount="1" falsecount="0"/>
945
- <line num="39" count="4" type="stmt"/>
946
- <line num="40" count="4" type="stmt"/>
947
- <line num="41" count="4" type="stmt"/>
948
- <line num="42" count="4" type="stmt"/>
949
- <line num="43" count="4" type="stmt"/>
950
- <line num="44" count="4" type="stmt"/>
951
- <line num="45" count="4" type="stmt"/>
952
- <line num="46" count="4" type="stmt"/>
953
- <line num="47" count="4" type="stmt"/>
954
- <line num="52" count="2" type="stmt"/>
955
- <line num="53" count="2" type="stmt"/>
956
- <line num="54" count="2" type="cond" truecount="1" falsecount="0"/>
957
- <line num="55" count="2" type="stmt"/>
958
- <line num="59" count="2" type="cond" truecount="2" falsecount="0"/>
959
- <line num="60" count="1" type="stmt"/>
960
- <line num="64" count="1" type="stmt"/>
961
- <line num="71" count="0" type="stmt"/>
962
- <line num="73" count="1" type="stmt"/>
963
- </file>
964
- </package>
965
- <package name="components.user-privilege">
966
- <metrics statements="33" coveredstatements="33" conditionals="4" coveredconditionals="4" methods="7" coveredmethods="7"/>
967
- <file name="user-privilege.repository.ts" path="C:\Work\sso\src\components\user-privilege\user-privilege.repository.ts">
968
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
969
- <line num="1" count="3" type="stmt"/>
970
- <line num="2" count="3" type="stmt"/>
971
- <line num="4" count="3" type="stmt"/>
972
- <line num="9" count="3" type="stmt"/>
973
- </file>
974
- <file name="user-privilege.ts" path="C:\Work\sso\src\components\user-privilege\user-privilege.ts">
975
- <metrics statements="29" coveredstatements="29" conditionals="4" coveredconditionals="4" methods="6" coveredmethods="6"/>
976
- <line num="1" count="1" type="stmt"/>
977
- <line num="3" count="1" type="stmt"/>
978
- <line num="5" count="1" type="stmt"/>
979
- <line num="6" count="6" type="stmt"/>
980
- <line num="7" count="6" type="stmt"/>
981
- <line num="20" count="2" type="stmt"/>
982
- <line num="24" count="2" type="stmt"/>
983
- <line num="28" count="2" type="stmt"/>
984
- <line num="32" count="2" type="stmt"/>
985
- <line num="35" count="1" type="stmt"/>
986
- <line num="38" count="6" type="stmt"/>
987
- <line num="39" count="6" type="cond" truecount="1" falsecount="0"/>
988
- <line num="40" count="4" type="stmt"/>
989
- <line num="41" count="4" type="stmt"/>
990
- <line num="42" count="4" type="stmt"/>
991
- <line num="43" count="4" type="stmt"/>
992
- <line num="44" count="4" type="stmt"/>
993
- <line num="45" count="4" type="stmt"/>
994
- <line num="46" count="4" type="stmt"/>
995
- <line num="47" count="4" type="stmt"/>
996
- <line num="52" count="2" type="stmt"/>
997
- <line num="53" count="2" type="stmt"/>
998
- <line num="54" count="2" type="cond" truecount="1" falsecount="0"/>
999
- <line num="55" count="2" type="stmt"/>
1000
- <line num="59" count="2" type="cond" truecount="2" falsecount="0"/>
1001
- <line num="60" count="1" type="stmt"/>
1002
- <line num="62" count="1" type="stmt"/>
1003
- <line num="69" count="1" type="stmt"/>
1004
- <line num="71" count="1" type="stmt"/>
1005
- </file>
1006
- </package>
1007
- <package name="components.user-system-access">
1008
- <metrics statements="33" coveredstatements="32" conditionals="4" coveredconditionals="4" methods="7" coveredmethods="7"/>
1009
- <file name="user-system-access.repository.ts" path="C:\Work\sso\src\components\user-system-access\user-system-access.repository.ts">
1010
- <metrics statements="4" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
1011
- <line num="1" count="3" type="stmt"/>
1012
- <line num="2" count="3" type="stmt"/>
1013
- <line num="4" count="3" type="stmt"/>
1014
- <line num="9" count="3" type="stmt"/>
1015
- </file>
1016
- <file name="user-system-access.ts" path="C:\Work\sso\src\components\user-system-access\user-system-access.ts">
1017
- <metrics statements="29" coveredstatements="28" conditionals="4" coveredconditionals="4" methods="6" coveredmethods="6"/>
1018
- <line num="1" count="1" type="stmt"/>
1019
- <line num="2" count="1" type="stmt"/>
1020
- <line num="5" count="1" type="stmt"/>
1021
- <line num="6" count="6" type="stmt"/>
1022
- <line num="7" count="6" type="stmt"/>
1023
- <line num="20" count="2" type="stmt"/>
1024
- <line num="24" count="2" type="stmt"/>
1025
- <line num="28" count="2" type="stmt"/>
1026
- <line num="32" count="2" type="stmt"/>
1027
- <line num="35" count="1" type="stmt"/>
1028
- <line num="38" count="6" type="stmt"/>
1029
- <line num="39" count="6" type="cond" truecount="1" falsecount="0"/>
1030
- <line num="40" count="4" type="stmt"/>
1031
- <line num="41" count="4" type="stmt"/>
1032
- <line num="42" count="4" type="stmt"/>
1033
- <line num="43" count="4" type="stmt"/>
1034
- <line num="44" count="4" type="stmt"/>
1035
- <line num="45" count="4" type="stmt"/>
1036
- <line num="46" count="4" type="stmt"/>
1037
- <line num="47" count="4" type="stmt"/>
1038
- <line num="52" count="2" type="stmt"/>
1039
- <line num="53" count="2" type="stmt"/>
1040
- <line num="54" count="2" type="cond" truecount="1" falsecount="0"/>
1041
- <line num="55" count="2" type="stmt"/>
1042
- <line num="59" count="2" type="cond" truecount="2" falsecount="0"/>
1043
- <line num="60" count="1" type="stmt"/>
1044
- <line num="64" count="1" type="stmt"/>
1045
- <line num="71" count="0" type="stmt"/>
1046
- <line num="73" count="1" type="stmt"/>
1047
- </file>
1048
- </package>
1049
- <package name="enum">
1050
- <metrics statements="19" coveredstatements="19" conditionals="6" coveredconditionals="6" methods="3" coveredmethods="3"/>
1051
- <file name="group-type.enum.ts" path="C:\Work\sso\src\enum\group-type.enum.ts">
1052
- <metrics statements="7" coveredstatements="7" conditionals="2" coveredconditionals="2" methods="1" coveredmethods="1"/>
1053
- <line num="1" count="12" type="cond" truecount="2" falsecount="0"/>
1054
- <line num="2" count="12" type="stmt"/>
1055
- <line num="3" count="12" type="stmt"/>
1056
- <line num="4" count="12" type="stmt"/>
1057
- <line num="5" count="12" type="stmt"/>
1058
- <line num="6" count="12" type="stmt"/>
1059
- <line num="7" count="12" type="stmt"/>
1060
- </file>
1061
- <file name="index.ts" path="C:\Work\sso\src\enum\index.ts">
1062
- <metrics statements="3" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
1063
- <line num="1" count="2" type="stmt"/>
1064
- <line num="2" count="2" type="stmt"/>
1065
- <line num="3" count="2" type="stmt"/>
1066
- </file>
1067
- <file name="user-status.enum.ts" path="C:\Work\sso\src\enum\user-status.enum.ts">
1068
- <metrics statements="6" coveredstatements="6" conditionals="2" coveredconditionals="2" methods="1" coveredmethods="1"/>
1069
- <line num="1" count="12" type="cond" truecount="2" falsecount="0"/>
1070
- <line num="2" count="12" type="stmt"/>
1071
- <line num="3" count="12" type="stmt"/>
1072
- <line num="4" count="12" type="stmt"/>
1073
- <line num="5" count="12" type="stmt"/>
1074
- <line num="6" count="12" type="stmt"/>
1075
- </file>
1076
- <file name="yn.enum.ts" path="C:\Work\sso\src\enum\yn.enum.ts">
1077
- <metrics statements="3" coveredstatements="3" conditionals="2" coveredconditionals="2" methods="1" coveredmethods="1"/>
1078
- <line num="1" count="12" type="cond" truecount="2" falsecount="0"/>
1079
- <line num="2" count="12" type="stmt"/>
1080
- <line num="3" count="12" type="stmt"/>
1081
- </file>
1082
- </package>
1083
- <package name="models">
1084
- <metrics statements="271" coveredstatements="271" conditionals="0" coveredconditionals="0" methods="105" coveredmethods="0"/>
1085
- <file name="group-object-privilege.entity.ts" path="C:\Work\sso\src\models\group-object-privilege.entity.ts">
1086
- <metrics statements="18" coveredstatements="18" conditionals="0" coveredconditionals="0" methods="8" coveredmethods="0"/>
1087
- <line num="1" count="12" type="stmt"/>
1088
- <line num="11" count="12" type="stmt"/>
1089
- <line num="12" count="12" type="stmt"/>
1090
- <line num="13" count="12" type="stmt"/>
1091
- <line num="21" count="12" type="stmt"/>
1092
- <line num="22" count="12" type="stmt"/>
1093
- <line num="29" count="12" type="stmt"/>
1094
- <line num="35" count="12" type="stmt"/>
1095
- <line num="42" count="12" type="stmt"/>
1096
- <line num="48" count="12" type="stmt"/>
1097
- <line num="54" count="12" type="stmt"/>
1098
- <line num="60" count="12" type="stmt"/>
1099
- <line num="66" count="12" type="stmt"/>
1100
- <line num="69" count="12" type="stmt"/>
1101
- <line num="72" count="12" type="stmt"/>
1102
- <line num="75" count="12" type="stmt"/>
1103
- <line num="78" count="12" type="stmt"/>
1104
- <line num="81" count="12" type="stmt"/>
1105
- </file>
1106
- <file name="group-privilege.entity.ts" path="C:\Work\sso\src\models\group-privilege.entity.ts">
1107
- <metrics statements="17" coveredstatements="17" conditionals="0" coveredconditionals="0" methods="8" coveredmethods="0"/>
1108
- <line num="1" count="12" type="stmt"/>
1109
- <line num="11" count="12" type="stmt"/>
1110
- <line num="12" count="12" type="stmt"/>
1111
- <line num="13" count="12" type="stmt"/>
1112
- <line num="21" count="12" type="stmt"/>
1113
- <line num="22" count="12" type="stmt"/>
1114
- <line num="29" count="12" type="stmt"/>
1115
- <line num="35" count="12" type="stmt"/>
1116
- <line num="42" count="12" type="stmt"/>
1117
- <line num="48" count="12" type="stmt"/>
1118
- <line num="54" count="12" type="stmt"/>
1119
- <line num="60" count="12" type="stmt"/>
1120
- <line num="63" count="12" type="stmt"/>
1121
- <line num="66" count="12" type="stmt"/>
1122
- <line num="69" count="12" type="stmt"/>
1123
- <line num="72" count="12" type="stmt"/>
1124
- <line num="75" count="12" type="stmt"/>
1125
- </file>
1126
- <file name="group-reporting-user.entity.ts" path="C:\Work\sso\src\models\group-reporting-user.entity.ts">
1127
- <metrics statements="17" coveredstatements="17" conditionals="0" coveredconditionals="0" methods="8" coveredmethods="0"/>
1128
- <line num="1" count="1" type="stmt"/>
1129
- <line num="11" count="1" type="stmt"/>
1130
- <line num="12" count="1" type="stmt"/>
1131
- <line num="20" count="1" type="stmt"/>
1132
- <line num="21" count="1" type="stmt"/>
1133
- <line num="28" count="1" type="stmt"/>
1134
- <line num="35" count="1" type="stmt"/>
1135
- <line num="42" count="1" type="stmt"/>
1136
- <line num="48" count="1" type="stmt"/>
1137
- <line num="54" count="1" type="stmt"/>
1138
- <line num="61" count="1" type="stmt"/>
1139
- <line num="68" count="1" type="stmt"/>
1140
- <line num="71" count="1" type="stmt"/>
1141
- <line num="74" count="1" type="stmt"/>
1142
- <line num="77" count="1" type="stmt"/>
1143
- <line num="80" count="1" type="stmt"/>
1144
- <line num="83" count="1" type="stmt"/>
1145
- </file>
1146
- <file name="group-system-access.entity.ts" path="C:\Work\sso\src\models\group-system-access.entity.ts">
1147
- <metrics statements="17" coveredstatements="17" conditionals="0" coveredconditionals="0" methods="8" coveredmethods="0"/>
1148
- <line num="1" count="12" type="stmt"/>
1149
- <line num="11" count="12" type="stmt"/>
1150
- <line num="12" count="12" type="stmt"/>
1151
- <line num="13" count="12" type="stmt"/>
1152
- <line num="21" count="12" type="stmt"/>
1153
- <line num="22" count="12" type="stmt"/>
1154
- <line num="29" count="12" type="stmt"/>
1155
- <line num="36" count="12" type="stmt"/>
1156
- <line num="43" count="12" type="stmt"/>
1157
- <line num="49" count="12" type="stmt"/>
1158
- <line num="56" count="12" type="stmt"/>
1159
- <line num="63" count="12" type="stmt"/>
1160
- <line num="66" count="12" type="stmt"/>
1161
- <line num="69" count="12" type="stmt"/>
1162
- <line num="72" count="12" type="stmt"/>
1163
- <line num="75" count="12" type="stmt"/>
1164
- <line num="78" count="12" type="stmt"/>
1165
- </file>
1166
- <file name="group.entity.ts" path="C:\Work\sso\src\models\group.entity.ts">
1167
- <metrics statements="28" coveredstatements="28" conditionals="0" coveredconditionals="0" methods="11" coveredmethods="0"/>
1168
- <line num="1" count="12" type="stmt"/>
1169
- <line num="12" count="12" type="stmt"/>
1170
- <line num="13" count="12" type="stmt"/>
1171
- <line num="14" count="12" type="stmt"/>
1172
- <line num="15" count="12" type="stmt"/>
1173
- <line num="16" count="12" type="stmt"/>
1174
- <line num="17" count="12" type="stmt"/>
1175
- <line num="25" count="12" type="stmt"/>
1176
- <line num="26" count="12" type="stmt"/>
1177
- <line num="33" count="12" type="stmt"/>
1178
- <line num="39" count="12" type="stmt"/>
1179
- <line num="45" count="12" type="stmt"/>
1180
- <line num="51" count="12" type="stmt"/>
1181
- <line num="58" count="12" type="stmt"/>
1182
- <line num="63" count="12" type="stmt"/>
1183
- <line num="68" count="12" type="stmt"/>
1184
- <line num="74" count="12" type="stmt"/>
1185
- <line num="81" count="12" type="stmt"/>
1186
- <line num="88" count="12" type="stmt"/>
1187
- <line num="91" count="12" type="stmt"/>
1188
- <line num="94" count="12" type="stmt"/>
1189
- <line num="97" count="12" type="stmt"/>
1190
- <line num="100" count="12" type="stmt"/>
1191
- <line num="103" count="12" type="stmt"/>
1192
- <line num="106" count="12" type="stmt"/>
1193
- <line num="109" count="12" type="stmt"/>
1194
- <line num="112" count="12" type="stmt"/>
1195
- <line num="115" count="12" type="stmt"/>
1196
- </file>
1197
- <file name="login-history.entity.ts" path="C:\Work\sso\src\models\login-history.entity.ts">
1198
- <metrics statements="11" coveredstatements="11" conditionals="0" coveredconditionals="0" methods="4" coveredmethods="0"/>
1199
- <line num="1" count="2" type="stmt"/>
1200
- <line num="10" count="2" type="stmt"/>
1201
- <line num="11" count="2" type="stmt"/>
1202
- <line num="19" count="2" type="stmt"/>
1203
- <line num="20" count="2" type="stmt"/>
1204
- <line num="28" count="2" type="stmt"/>
1205
- <line num="35" count="2" type="stmt"/>
1206
- <line num="42" count="2" type="stmt"/>
1207
- <line num="48" count="2" type="stmt"/>
1208
- <line num="51" count="2" type="stmt"/>
1209
- <line num="54" count="2" type="stmt"/>
1210
- </file>
1211
- <file name="staff.entity.ts" path="C:\Work\sso\src\models\staff.entity.ts">
1212
- <metrics statements="20" coveredstatements="20" conditionals="0" coveredconditionals="0" methods="4" coveredmethods="0"/>
1213
- <line num="1" count="12" type="stmt"/>
1214
- <line num="12" count="12" type="stmt"/>
1215
- <line num="20" count="12" type="stmt"/>
1216
- <line num="21" count="12" type="stmt"/>
1217
- <line num="28" count="12" type="stmt"/>
1218
- <line num="35" count="12" type="stmt"/>
1219
- <line num="41" count="12" type="stmt"/>
1220
- <line num="47" count="12" type="stmt"/>
1221
- <line num="53" count="12" type="stmt"/>
1222
- <line num="59" count="12" type="stmt"/>
1223
- <line num="65" count="12" type="stmt"/>
1224
- <line num="71" count="12" type="stmt"/>
1225
- <line num="77" count="12" type="stmt"/>
1226
- <line num="83" count="12" type="stmt"/>
1227
- <line num="89" count="12" type="stmt"/>
1228
- <line num="95" count="12" type="stmt"/>
1229
- <line num="98" count="12" type="stmt"/>
1230
- <line num="101" count="12" type="stmt"/>
1231
- <line num="104" count="12" type="stmt"/>
1232
- <line num="107" count="12" type="stmt"/>
1233
- </file>
1234
- <file name="system-privilege.entity.ts" path="C:\Work\sso\src\models\system-privilege.entity.ts">
1235
- <metrics statements="18" coveredstatements="18" conditionals="0" coveredconditionals="0" methods="8" coveredmethods="0"/>
1236
- <line num="1" count="12" type="stmt"/>
1237
- <line num="12" count="12" type="stmt"/>
1238
- <line num="13" count="12" type="stmt"/>
1239
- <line num="14" count="12" type="stmt"/>
1240
- <line num="22" count="12" type="stmt"/>
1241
- <line num="23" count="12" type="stmt"/>
1242
- <line num="31" count="12" type="stmt"/>
1243
- <line num="39" count="12" type="stmt"/>
1244
- <line num="46" count="12" type="stmt"/>
1245
- <line num="53" count="12" type="stmt"/>
1246
- <line num="59" count="12" type="stmt"/>
1247
- <line num="66" count="12" type="stmt"/>
1248
- <line num="73" count="12" type="stmt"/>
1249
- <line num="76" count="12" type="stmt"/>
1250
- <line num="79" count="12" type="stmt"/>
1251
- <line num="82" count="12" type="stmt"/>
1252
- <line num="85" count="12" type="stmt"/>
1253
- <line num="88" count="12" type="stmt"/>
1254
- </file>
1255
- <file name="system.entity.ts" path="C:\Work\sso\src\models\system.entity.ts">
1256
- <metrics statements="24" coveredstatements="24" conditionals="0" coveredconditionals="0" methods="7" coveredmethods="0"/>
1257
- <line num="1" count="12" type="stmt"/>
1258
- <line num="12" count="12" type="stmt"/>
1259
- <line num="13" count="12" type="stmt"/>
1260
- <line num="14" count="12" type="stmt"/>
1261
- <line num="15" count="12" type="stmt"/>
1262
- <line num="23" count="12" type="stmt"/>
1263
- <line num="24" count="12" type="stmt"/>
1264
- <line num="31" count="12" type="stmt"/>
1265
- <line num="37" count="12" type="stmt"/>
1266
- <line num="43" count="12" type="stmt"/>
1267
- <line num="49" count="12" type="stmt"/>
1268
- <line num="55" count="12" type="stmt"/>
1269
- <line num="61" count="12" type="stmt"/>
1270
- <line num="67" count="12" type="stmt"/>
1271
- <line num="73" count="12" type="stmt"/>
1272
- <line num="79" count="12" type="stmt"/>
1273
- <line num="86" count="12" type="stmt"/>
1274
- <line num="93" count="12" type="stmt"/>
1275
- <line num="96" count="12" type="stmt"/>
1276
- <line num="99" count="12" type="stmt"/>
1277
- <line num="102" count="12" type="stmt"/>
1278
- <line num="105" count="12" type="stmt"/>
1279
- <line num="108" count="12" type="stmt"/>
1280
- <line num="111" count="12" type="stmt"/>
1281
- </file>
1282
- <file name="user-group.entity.ts" path="C:\Work\sso\src\models\user-group.entity.ts">
1283
- <metrics statements="18" coveredstatements="18" conditionals="0" coveredconditionals="0" methods="8" coveredmethods="0"/>
1284
- <line num="1" count="12" type="stmt"/>
1285
- <line num="11" count="12" type="stmt"/>
1286
- <line num="12" count="12" type="stmt"/>
1287
- <line num="20" count="12" type="stmt"/>
1288
- <line num="21" count="12" type="stmt"/>
1289
- <line num="28" count="12" type="stmt"/>
1290
- <line num="35" count="12" type="stmt"/>
1291
- <line num="43" count="12" type="stmt"/>
1292
- <line num="49" count="12" type="stmt"/>
1293
- <line num="55" count="12" type="stmt"/>
1294
- <line num="61" count="12" type="stmt"/>
1295
- <line num="67" count="12" type="stmt"/>
1296
- <line num="73" count="12" type="stmt"/>
1297
- <line num="76" count="12" type="stmt"/>
1298
- <line num="79" count="12" type="stmt"/>
1299
- <line num="82" count="12" type="stmt"/>
1300
- <line num="85" count="12" type="stmt"/>
1301
- <line num="88" count="12" type="stmt"/>
1302
- </file>
1303
- <file name="user-object-privilege.entity.ts" path="C:\Work\sso\src\models\user-object-privilege.entity.ts">
1304
- <metrics statements="17" coveredstatements="17" conditionals="0" coveredconditionals="0" methods="8" coveredmethods="0"/>
1305
- <line num="1" count="12" type="stmt"/>
1306
- <line num="11" count="12" type="stmt"/>
1307
- <line num="12" count="12" type="stmt"/>
1308
- <line num="20" count="12" type="stmt"/>
1309
- <line num="21" count="12" type="stmt"/>
1310
- <line num="28" count="12" type="stmt"/>
1311
- <line num="34" count="12" type="stmt"/>
1312
- <line num="41" count="12" type="stmt"/>
1313
- <line num="47" count="12" type="stmt"/>
1314
- <line num="53" count="12" type="stmt"/>
1315
- <line num="59" count="12" type="stmt"/>
1316
- <line num="65" count="12" type="stmt"/>
1317
- <line num="68" count="12" type="stmt"/>
1318
- <line num="71" count="12" type="stmt"/>
1319
- <line num="74" count="12" type="stmt"/>
1320
- <line num="77" count="12" type="stmt"/>
1321
- <line num="80" count="12" type="stmt"/>
1322
- </file>
1323
- <file name="user-privilege.entity.ts" path="C:\Work\sso\src\models\user-privilege.entity.ts">
1324
- <metrics statements="16" coveredstatements="16" conditionals="0" coveredconditionals="0" methods="6" coveredmethods="0"/>
1325
- <line num="1" count="12" type="stmt"/>
1326
- <line num="11" count="12" type="stmt"/>
1327
- <line num="12" count="12" type="stmt"/>
1328
- <line num="20" count="12" type="stmt"/>
1329
- <line num="21" count="12" type="stmt"/>
1330
- <line num="28" count="12" type="stmt"/>
1331
- <line num="35" count="12" type="stmt"/>
1332
- <line num="43" count="12" type="stmt"/>
1333
- <line num="50" count="12" type="stmt"/>
1334
- <line num="55" count="12" type="stmt"/>
1335
- <line num="60" count="12" type="stmt"/>
1336
- <line num="63" count="12" type="stmt"/>
1337
- <line num="66" count="12" type="stmt"/>
1338
- <line num="69" count="12" type="stmt"/>
1339
- <line num="72" count="12" type="stmt"/>
1340
- <line num="75" count="12" type="stmt"/>
1341
- </file>
1342
- <file name="user-system-access.entity.ts" path="C:\Work\sso\src\models\user-system-access.entity.ts">
1343
- <metrics statements="16" coveredstatements="16" conditionals="0" coveredconditionals="0" methods="8" coveredmethods="0"/>
1344
- <line num="1" count="12" type="stmt"/>
1345
- <line num="11" count="12" type="stmt"/>
1346
- <line num="12" count="12" type="stmt"/>
1347
- <line num="20" count="12" type="stmt"/>
1348
- <line num="21" count="12" type="stmt"/>
1349
- <line num="28" count="12" type="stmt"/>
1350
- <line num="35" count="12" type="stmt"/>
1351
- <line num="42" count="12" type="stmt"/>
1352
- <line num="48" count="12" type="stmt"/>
1353
- <line num="54" count="12" type="stmt"/>
1354
- <line num="60" count="12" type="stmt"/>
1355
- <line num="63" count="12" type="stmt"/>
1356
- <line num="66" count="12" type="stmt"/>
1357
- <line num="69" count="12" type="stmt"/>
1358
- <line num="72" count="12" type="stmt"/>
1359
- <line num="75" count="12" type="stmt"/>
1360
- </file>
1361
- <file name="user.entity.ts" path="C:\Work\sso\src\models\user.entity.ts">
1362
- <metrics statements="34" coveredstatements="34" conditionals="0" coveredconditionals="0" methods="9" coveredmethods="0"/>
1363
- <line num="1" count="12" type="stmt"/>
1364
- <line num="14" count="12" type="stmt"/>
1365
- <line num="15" count="12" type="stmt"/>
1366
- <line num="16" count="12" type="stmt"/>
1367
- <line num="17" count="12" type="stmt"/>
1368
- <line num="18" count="12" type="stmt"/>
1369
- <line num="19" count="12" type="stmt"/>
1370
- <line num="20" count="12" type="stmt"/>
1371
- <line num="28" count="12" type="stmt"/>
1372
- <line num="29" count="12" type="stmt"/>
1373
- <line num="37" count="12" type="stmt"/>
1374
- <line num="43" count="12" type="stmt"/>
1375
- <line num="49" count="12" type="stmt"/>
1376
- <line num="55" count="12" type="stmt"/>
1377
- <line num="61" count="12" type="stmt"/>
1378
- <line num="66" count="12" type="stmt"/>
1379
- <line num="71" count="12" type="stmt"/>
1380
- <line num="76" count="12" type="stmt"/>
1381
- <line num="81" count="12" type="stmt"/>
1382
- <line num="86" count="12" type="stmt"/>
1383
- <line num="92" count="12" type="stmt"/>
1384
- <line num="97" count="12" type="stmt"/>
1385
- <line num="102" count="12" type="stmt"/>
1386
- <line num="108" count="12" type="stmt"/>
1387
- <line num="114" count="12" type="stmt"/>
1388
- <line num="117" count="12" type="stmt"/>
1389
- <line num="123" count="12" type="stmt"/>
1390
- <line num="126" count="12" type="stmt"/>
1391
- <line num="129" count="12" type="stmt"/>
1392
- <line num="132" count="12" type="stmt"/>
1393
- <line num="135" count="12" type="stmt"/>
1394
- <line num="138" count="12" type="stmt"/>
1395
- <line num="141" count="12" type="stmt"/>
1396
- <line num="144" count="12" type="stmt"/>
1397
- </file>
1398
- </package>
1399
- <package name="redis-client">
1400
- <metrics statements="20" coveredstatements="15" conditionals="6" coveredconditionals="3" methods="7" coveredmethods="4"/>
1401
- <file name="redis.service.ts" path="C:\Work\sso\src\redis-client\redis.service.ts">
1402
- <metrics statements="20" coveredstatements="15" conditionals="6" coveredconditionals="3" methods="7" coveredmethods="4"/>
1403
- <line num="1" count="3" type="stmt"/>
1404
- <line num="2" count="3" type="stmt"/>
1405
- <line num="8" count="24" type="cond" truecount="1" falsecount="1"/>
1406
- <line num="9" count="24" type="cond" truecount="1" falsecount="0"/>
1407
- <line num="11" count="3" type="stmt"/>
1408
- <line num="16" count="3" type="stmt"/>
1409
- <line num="17" count="0" type="stmt"/>
1410
- <line num="19" count="3" type="stmt"/>
1411
- <line num="20" count="3" type="stmt"/>
1412
- <line num="21" count="0" type="stmt"/>
1413
- <line num="24" count="3" type="stmt"/>
1414
- <line num="27" count="0" type="stmt"/>
1415
- <line num="29" count="24" type="stmt"/>
1416
- <line num="37" count="4" type="stmt"/>
1417
- <line num="38" count="4" type="cond" truecount="1" falsecount="1"/>
1418
- <line num="39" count="4" type="stmt"/>
1419
- <line num="41" count="0" type="stmt"/>
1420
- <line num="46" count="4" type="stmt"/>
1421
- <line num="47" count="4" type="stmt"/>
1422
- <line num="49" count="0" type="stmt"/>
1423
- </file>
1424
- </package>
1425
- <package name="session">
1426
- <metrics statements="20" coveredstatements="17" conditionals="1" coveredconditionals="1" methods="5" coveredmethods="5"/>
1427
- <file name="session.service.ts" path="C:\Work\sso\src\session\session.service.ts">
1428
- <metrics statements="20" coveredstatements="17" conditionals="1" coveredconditionals="1" methods="5" coveredmethods="5"/>
1429
- <line num="1" count="2" type="stmt"/>
1430
- <line num="5" count="2" type="stmt"/>
1431
- <line num="11" count="22" type="stmt"/>
1432
- <line num="12" count="22" type="stmt"/>
1433
- <line num="13" count="22" type="stmt"/>
1434
- <line num="20" count="3" type="stmt"/>
1435
- <line num="21" count="3" type="stmt"/>
1436
- <line num="22" count="3" type="stmt"/>
1437
- <line num="28" count="0" type="stmt"/>
1438
- <line num="33" count="3" type="stmt"/>
1439
- <line num="34" count="3" type="stmt"/>
1440
- <line num="35" count="3" type="stmt"/>
1441
- <line num="36" count="3" type="cond" truecount="1" falsecount="0"/>
1442
- <line num="37" count="1" type="stmt"/>
1443
- <line num="40" count="2" type="stmt"/>
1444
- <line num="42" count="0" type="stmt"/>
1445
- <line num="47" count="1" type="stmt"/>
1446
- <line num="48" count="1" type="stmt"/>
1447
- <line num="49" count="1" type="stmt"/>
1448
- <line num="51" count="0" type="stmt"/>
1449
- </file>
1450
- </package>
1451
- </project>
1452
- </coverage>