@lad-tech/nsc-toolkit 1.7.0 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -2
- package/README.md +1 -0
- package/coverage/clover.xml +608 -367
- package/coverage/coverage-final.json +21 -7
- package/coverage/lcov-report/examples/LogicService/index.html +131 -0
- package/coverage/lcov-report/examples/LogicService/index.ts.html +133 -0
- package/coverage/lcov-report/examples/LogicService/methods/WeirdSum.ts.html +148 -0
- package/coverage/lcov-report/examples/LogicService/methods/index.html +116 -0
- package/coverage/lcov-report/examples/LogicService/service.ts.html +133 -0
- package/coverage/lcov-report/examples/MathService/index.html +131 -0
- package/coverage/lcov-report/examples/MathService/index.ts.html +151 -0
- package/coverage/lcov-report/examples/MathService/methods/Fibonacci.ts.html +169 -0
- package/coverage/lcov-report/examples/MathService/methods/Sum.ts.html +133 -0
- package/coverage/lcov-report/examples/MathService/methods/SumStream.ts.html +190 -0
- package/coverage/lcov-report/examples/MathService/methods/index.html +146 -0
- package/coverage/lcov-report/examples/MathService/service.ts.html +145 -0
- package/coverage/lcov-report/index.html +94 -19
- package/coverage/lcov.info +1116 -642
- package/dist/Client.js +6 -6
- package/dist/Client.js.map +1 -1
- package/dist/Root.js +8 -2
- package/dist/Root.js.map +1 -1
- package/dist/Service.js +16 -11
- package/dist/Service.js.map +1 -1
- package/dist/StreamManager.js +1 -1
- package/dist/StreamManager.js.map +1 -1
- package/dist/Union/Broker.js +83 -0
- package/dist/Union/Broker.js.map +1 -0
- package/dist/Union/JetStreamClient.js +34 -0
- package/dist/Union/JetStreamClient.js.map +1 -0
- package/dist/Union/JetStreamManager.js +18 -0
- package/dist/Union/JetStreamManager.js.map +1 -0
- package/dist/Union/StreamApi.js +34 -0
- package/dist/Union/StreamApi.js.map +1 -0
- package/dist/Union/Subscription.js +47 -0
- package/dist/Union/Subscription.js.map +1 -0
- package/dist/Union/index.js +18 -0
- package/dist/Union/index.js.map +1 -0
- package/dist/types/Root.d.ts +3 -2
- package/dist/types/Union/Broker.d.ts +27 -0
- package/dist/types/Union/JetStreamClient.d.ts +15 -0
- package/dist/types/Union/JetStreamManager.d.ts +10 -0
- package/dist/types/Union/StreamApi.d.ts +12 -0
- package/dist/types/Union/Subscription.d.ts +20 -0
- package/dist/types/Union/index.d.ts +1 -0
- package/dist/types/interfaces.d.ts +1 -1
- package/package.json +2 -2
package/coverage/clover.xml
CHANGED
|
@@ -1,29 +1,157 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<coverage generated="
|
|
3
|
-
<project timestamp="
|
|
4
|
-
<metrics statements="
|
|
2
|
+
<coverage generated="1683020625762" clover="3.2.0">
|
|
3
|
+
<project timestamp="1683020625762" name="All files">
|
|
4
|
+
<metrics statements="717" coveredstatements="607" conditionals="298" coveredconditionals="229" methods="168" coveredmethods="120" elements="1183" coveredelements="956" complexity="0" loc="717" ncloc="717" packages="8" files="25" classes="25"/>
|
|
5
|
+
<package name="examples.LogicService">
|
|
6
|
+
<metrics statements="15" coveredstatements="15" conditionals="2" coveredconditionals="1" methods="3" coveredmethods="3"/>
|
|
7
|
+
<file name="index.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/examples/LogicService/index.ts">
|
|
8
|
+
<metrics statements="6" coveredstatements="6" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
9
|
+
<line num="1" count="1" type="stmt"/>
|
|
10
|
+
<line num="5" count="1" type="stmt"/>
|
|
11
|
+
<line num="6" count="1" type="stmt"/>
|
|
12
|
+
<line num="8" count="1" type="stmt"/>
|
|
13
|
+
<line num="10" count="1" type="stmt"/>
|
|
14
|
+
<line num="14" count="1" type="stmt"/>
|
|
15
|
+
</file>
|
|
16
|
+
<file name="service.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/examples/LogicService/service.ts">
|
|
17
|
+
<metrics statements="9" coveredstatements="9" conditionals="2" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
18
|
+
<line num="1" count="1" type="stmt"/>
|
|
19
|
+
<line num="2" count="1" type="stmt"/>
|
|
20
|
+
<line num="3" count="1" type="stmt"/>
|
|
21
|
+
<line num="5" count="1" type="stmt"/>
|
|
22
|
+
<line num="7" count="1" type="stmt"/>
|
|
23
|
+
<line num="8" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
24
|
+
<line num="9" count="1" type="stmt"/>
|
|
25
|
+
<line num="14" count="1" type="stmt"/>
|
|
26
|
+
<line num="15" count="1" type="stmt"/>
|
|
27
|
+
</file>
|
|
28
|
+
</package>
|
|
29
|
+
<package name="examples.LogicService.methods">
|
|
30
|
+
<metrics statements="13" coveredstatements="13" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
31
|
+
<file name="WeirdSum.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/examples/LogicService/methods/WeirdSum.ts">
|
|
32
|
+
<metrics statements="13" coveredstatements="13" conditionals="0" coveredconditionals="0" methods="1" coveredmethods="1"/>
|
|
33
|
+
<line num="2" count="1" type="stmt"/>
|
|
34
|
+
<line num="3" count="1" type="stmt"/>
|
|
35
|
+
<line num="5" count="1" type="stmt"/>
|
|
36
|
+
<line num="6" count="1" type="stmt"/>
|
|
37
|
+
<line num="9" count="1" type="stmt"/>
|
|
38
|
+
<line num="10" count="1" type="stmt"/>
|
|
39
|
+
<line num="11" count="1" type="stmt"/>
|
|
40
|
+
<line num="14" count="1" type="stmt"/>
|
|
41
|
+
<line num="15" count="1" type="stmt"/>
|
|
42
|
+
<line num="16" count="1" type="stmt"/>
|
|
43
|
+
<line num="17" count="1" type="stmt"/>
|
|
44
|
+
<line num="18" count="1" type="stmt"/>
|
|
45
|
+
<line num="19" count="1" type="stmt"/>
|
|
46
|
+
</file>
|
|
47
|
+
</package>
|
|
48
|
+
<package name="examples.MathService">
|
|
49
|
+
<metrics statements="18" coveredstatements="18" conditionals="2" coveredconditionals="1" methods="5" coveredmethods="5"/>
|
|
50
|
+
<file name="index.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/examples/MathService/index.ts">
|
|
51
|
+
<metrics statements="7" coveredstatements="7" conditionals="0" coveredconditionals="0" methods="4" coveredmethods="4"/>
|
|
52
|
+
<line num="1" count="1" type="stmt"/>
|
|
53
|
+
<line num="2" count="1" type="stmt"/>
|
|
54
|
+
<line num="9" count="1" type="stmt"/>
|
|
55
|
+
<line num="11" count="1" type="stmt"/>
|
|
56
|
+
<line num="14" count="1" type="stmt"/>
|
|
57
|
+
<line num="17" count="1" type="stmt"/>
|
|
58
|
+
<line num="20" count="1" type="stmt"/>
|
|
59
|
+
</file>
|
|
60
|
+
<file name="service.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/examples/MathService/service.ts">
|
|
61
|
+
<metrics statements="11" coveredstatements="11" conditionals="2" coveredconditionals="1" methods="1" coveredmethods="1"/>
|
|
62
|
+
<line num="1" count="1" type="stmt"/>
|
|
63
|
+
<line num="3" count="1" type="stmt"/>
|
|
64
|
+
<line num="4" count="1" type="stmt"/>
|
|
65
|
+
<line num="6" count="1" type="stmt"/>
|
|
66
|
+
<line num="7" count="1" type="stmt"/>
|
|
67
|
+
<line num="8" count="1" type="stmt"/>
|
|
68
|
+
<line num="10" count="1" type="stmt"/>
|
|
69
|
+
<line num="11" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
70
|
+
<line num="12" count="1" type="stmt"/>
|
|
71
|
+
<line num="18" count="1" type="stmt"/>
|
|
72
|
+
<line num="19" count="1" type="stmt"/>
|
|
73
|
+
</file>
|
|
74
|
+
</package>
|
|
75
|
+
<package name="examples.MathService.methods">
|
|
76
|
+
<metrics statements="46" coveredstatements="46" conditionals="0" coveredconditionals="0" methods="8" coveredmethods="8"/>
|
|
77
|
+
<file name="Fibonacci.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/examples/MathService/methods/Fibonacci.ts">
|
|
78
|
+
<metrics statements="19" coveredstatements="19" conditionals="0" coveredconditionals="0" methods="3" coveredmethods="3"/>
|
|
79
|
+
<line num="2" count="1" type="stmt"/>
|
|
80
|
+
<line num="3" count="1" type="stmt"/>
|
|
81
|
+
<line num="4" count="1" type="stmt"/>
|
|
82
|
+
<line num="5" count="1" type="stmt"/>
|
|
83
|
+
<line num="6" count="1" type="stmt"/>
|
|
84
|
+
<line num="9" count="1" type="stmt"/>
|
|
85
|
+
<line num="10" count="1" type="stmt"/>
|
|
86
|
+
<line num="11" count="1" type="stmt"/>
|
|
87
|
+
<line num="12" count="1" type="stmt"/>
|
|
88
|
+
<line num="14" count="1" type="stmt"/>
|
|
89
|
+
<line num="15" count="1" type="stmt"/>
|
|
90
|
+
<line num="18" count="1" type="stmt"/>
|
|
91
|
+
<line num="19" count="1" type="stmt"/>
|
|
92
|
+
<line num="20" count="8" type="stmt"/>
|
|
93
|
+
<line num="21" count="8" type="stmt"/>
|
|
94
|
+
<line num="22" count="8" type="stmt"/>
|
|
95
|
+
<line num="23" count="8" type="stmt"/>
|
|
96
|
+
<line num="24" count="8" type="stmt"/>
|
|
97
|
+
<line num="25" count="8" type="stmt"/>
|
|
98
|
+
</file>
|
|
99
|
+
<file name="Sum.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/examples/MathService/methods/Sum.ts">
|
|
100
|
+
<metrics statements="8" coveredstatements="8" conditionals="0" coveredconditionals="0" methods="2" coveredmethods="2"/>
|
|
101
|
+
<line num="2" count="1" type="stmt"/>
|
|
102
|
+
<line num="3" count="1" type="stmt"/>
|
|
103
|
+
<line num="4" count="1" type="stmt"/>
|
|
104
|
+
<line num="7" count="1" type="stmt"/>
|
|
105
|
+
<line num="8" count="1" type="stmt"/>
|
|
106
|
+
<line num="10" count="1" type="stmt"/>
|
|
107
|
+
<line num="11" count="1" type="stmt"/>
|
|
108
|
+
<line num="14" count="1" type="stmt"/>
|
|
109
|
+
</file>
|
|
110
|
+
<file name="SumStream.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/examples/MathService/methods/SumStream.ts">
|
|
111
|
+
<metrics statements="19" coveredstatements="19" conditionals="0" coveredconditionals="0" methods="3" coveredmethods="3"/>
|
|
112
|
+
<line num="2" count="1" type="stmt"/>
|
|
113
|
+
<line num="3" count="1" type="stmt"/>
|
|
114
|
+
<line num="5" count="1" type="stmt"/>
|
|
115
|
+
<line num="7" count="1" type="stmt"/>
|
|
116
|
+
<line num="10" count="1" type="stmt"/>
|
|
117
|
+
<line num="11" count="1" type="stmt"/>
|
|
118
|
+
<line num="12" count="1" type="stmt"/>
|
|
119
|
+
<line num="13" count="1" type="stmt"/>
|
|
120
|
+
<line num="14" count="1" type="stmt"/>
|
|
121
|
+
<line num="15" count="1" type="stmt"/>
|
|
122
|
+
<line num="16" count="1" type="stmt"/>
|
|
123
|
+
<line num="20" count="1" type="stmt"/>
|
|
124
|
+
<line num="22" count="1" type="stmt"/>
|
|
125
|
+
<line num="24" count="1" type="stmt"/>
|
|
126
|
+
<line num="25" count="8" type="stmt"/>
|
|
127
|
+
<line num="26" count="8" type="stmt"/>
|
|
128
|
+
<line num="29" count="1" type="stmt"/>
|
|
129
|
+
<line num="31" count="1" type="stmt"/>
|
|
130
|
+
<line num="33" count="1" type="stmt"/>
|
|
131
|
+
</file>
|
|
132
|
+
</package>
|
|
5
133
|
<package name="src">
|
|
6
|
-
<metrics statements="
|
|
134
|
+
<metrics statements="511" coveredstatements="445" conditionals="287" coveredconditionals="222" methods="87" coveredmethods="81"/>
|
|
7
135
|
<file name="Client.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/Client.ts">
|
|
8
|
-
<metrics statements="132" coveredstatements="123" conditionals="
|
|
9
|
-
<line num="1" count="
|
|
10
|
-
<line num="2" count="
|
|
11
|
-
<line num="3" count="
|
|
12
|
-
<line num="4" count="
|
|
13
|
-
<line num="5" count="
|
|
14
|
-
<line num="6" count="
|
|
15
|
-
<line num="7" count="
|
|
16
|
-
<line num="23" count="
|
|
17
|
-
<line num="24" count="
|
|
18
|
-
<line num="27" count="
|
|
19
|
-
<line num="33" count="
|
|
20
|
-
<line num="34" count="
|
|
21
|
-
<line num="37" count="
|
|
22
|
-
<line num="38" count="
|
|
23
|
-
<line num="40" count="
|
|
24
|
-
<line num="41" count="
|
|
25
|
-
<line num="42" count="
|
|
26
|
-
<line num="43" count="
|
|
136
|
+
<metrics statements="132" coveredstatements="123" conditionals="100" coveredconditionals="84" methods="18" coveredmethods="17"/>
|
|
137
|
+
<line num="1" count="3" type="stmt"/>
|
|
138
|
+
<line num="2" count="3" type="stmt"/>
|
|
139
|
+
<line num="3" count="3" type="stmt"/>
|
|
140
|
+
<line num="4" count="3" type="stmt"/>
|
|
141
|
+
<line num="5" count="3" type="stmt"/>
|
|
142
|
+
<line num="6" count="3" type="stmt"/>
|
|
143
|
+
<line num="7" count="3" type="stmt"/>
|
|
144
|
+
<line num="23" count="3" type="stmt"/>
|
|
145
|
+
<line num="24" count="3" type="stmt"/>
|
|
146
|
+
<line num="27" count="3" type="stmt"/>
|
|
147
|
+
<line num="33" count="6" type="stmt"/>
|
|
148
|
+
<line num="34" count="6" type="stmt"/>
|
|
149
|
+
<line num="37" count="6" type="stmt"/>
|
|
150
|
+
<line num="38" count="6" type="stmt"/>
|
|
151
|
+
<line num="40" count="6" type="stmt"/>
|
|
152
|
+
<line num="41" count="6" type="stmt"/>
|
|
153
|
+
<line num="42" count="6" type="stmt"/>
|
|
154
|
+
<line num="43" count="6" type="stmt"/>
|
|
27
155
|
<line num="51" count="3" type="stmt"/>
|
|
28
156
|
<line num="52" count="2" type="stmt"/>
|
|
29
157
|
<line num="53" count="2" type="stmt"/>
|
|
@@ -62,166 +190,169 @@
|
|
|
62
190
|
<line num="122" count="5" type="stmt"/>
|
|
63
191
|
<line num="128" count="2" type="stmt"/>
|
|
64
192
|
<line num="129" count="2" type="stmt"/>
|
|
65
|
-
<line num="133" count="
|
|
66
|
-
<line num="134" count="
|
|
67
|
-
<line num="135" count="
|
|
193
|
+
<line num="133" count="11" type="stmt"/>
|
|
194
|
+
<line num="134" count="11" type="stmt"/>
|
|
195
|
+
<line num="135" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
68
196
|
<line num="136" count="2" type="stmt"/>
|
|
69
|
-
<line num="145" count="
|
|
70
|
-
<line num="146" count="
|
|
71
|
-
<line num="147" count="
|
|
72
|
-
<line num="148" count="
|
|
73
|
-
<line num="149" count="
|
|
74
|
-
<line num="152" count="
|
|
75
|
-
<line num="153" count="
|
|
76
|
-
<line num="154" count="
|
|
77
|
-
<line num="155" count="
|
|
78
|
-
<line num="157" count="
|
|
197
|
+
<line num="145" count="14" type="stmt"/>
|
|
198
|
+
<line num="146" count="14" type="stmt"/>
|
|
199
|
+
<line num="147" count="14" type="stmt"/>
|
|
200
|
+
<line num="148" count="14" type="cond" truecount="10" falsecount="1"/>
|
|
201
|
+
<line num="149" count="8" type="stmt"/>
|
|
202
|
+
<line num="152" count="13" type="stmt"/>
|
|
203
|
+
<line num="153" count="13" type="cond" truecount="7" falsecount="1"/>
|
|
204
|
+
<line num="154" count="13" type="stmt"/>
|
|
205
|
+
<line num="155" count="13" type="stmt"/>
|
|
206
|
+
<line num="157" count="13" type="cond" truecount="1" falsecount="0"/>
|
|
79
207
|
<line num="158" count="1" type="stmt"/>
|
|
80
|
-
<line num="161" count="
|
|
81
|
-
<line num="163" count="
|
|
208
|
+
<line num="161" count="12" type="stmt"/>
|
|
209
|
+
<line num="163" count="12" type="cond" truecount="7" falsecount="1"/>
|
|
82
210
|
<line num="164" count="2" type="stmt"/>
|
|
83
211
|
<line num="165" count="2" type="stmt"/>
|
|
84
212
|
<line num="166" count="2" type="stmt"/>
|
|
85
213
|
<line num="167" count="2" type="cond" truecount="1" falsecount="0"/>
|
|
86
214
|
<line num="168" count="1" type="stmt"/>
|
|
87
215
|
<line num="171" count="0" type="stmt"/>
|
|
88
|
-
<line num="174" count="
|
|
89
|
-
<line num="178" count="
|
|
216
|
+
<line num="174" count="11" type="cond" truecount="5" falsecount="1"/>
|
|
217
|
+
<line num="178" count="11" type="cond" truecount="1" falsecount="0"/>
|
|
90
218
|
<line num="179" count="1" type="stmt"/>
|
|
91
|
-
<line num="182" count="
|
|
219
|
+
<line num="182" count="10" type="cond" truecount="10" falsecount="1"/>
|
|
92
220
|
<line num="183" count="3" type="stmt"/>
|
|
93
|
-
<line num="185" count="
|
|
221
|
+
<line num="185" count="9" type="cond" truecount="7" falsecount="1"/>
|
|
94
222
|
<line num="186" count="1" type="stmt"/>
|
|
95
|
-
<line num="189" count="
|
|
223
|
+
<line num="189" count="9" type="stmt"/>
|
|
96
224
|
<line num="191" count="4" type="stmt"/>
|
|
97
225
|
<line num="192" count="4" type="stmt"/>
|
|
98
226
|
<line num="193" count="4" type="stmt"/>
|
|
99
227
|
<line num="194" count="4" type="stmt"/>
|
|
100
|
-
<line num="196" count="
|
|
101
|
-
<line num="201" count="
|
|
102
|
-
<line num="202" count="
|
|
103
|
-
<line num="205" count="
|
|
104
|
-
<line num="206" count="
|
|
228
|
+
<line num="196" count="14" type="stmt"/>
|
|
229
|
+
<line num="201" count="5" type="stmt"/>
|
|
230
|
+
<line num="202" count="5" type="stmt"/>
|
|
231
|
+
<line num="205" count="5" type="stmt"/>
|
|
232
|
+
<line num="206" count="5" type="cond" truecount="2" falsecount="1"/>
|
|
105
233
|
<line num="207" count="0" type="stmt"/>
|
|
106
|
-
<line num="209" count="
|
|
107
|
-
<line num="213" count="
|
|
108
|
-
<line num="217" count="
|
|
109
|
-
<line num="218" count="
|
|
110
|
-
<line num="219" count="
|
|
234
|
+
<line num="209" count="5" type="stmt"/>
|
|
235
|
+
<line num="213" count="24" type="stmt"/>
|
|
236
|
+
<line num="217" count="6" type="stmt"/>
|
|
237
|
+
<line num="218" count="6" type="stmt"/>
|
|
238
|
+
<line num="219" count="6" type="stmt"/>
|
|
111
239
|
<line num="221" count="0" type="stmt"/>
|
|
112
|
-
<line num="231" count="
|
|
113
|
-
<line num="232" count="
|
|
114
|
-
<line num="233" count="
|
|
115
|
-
<line num="234" count="
|
|
116
|
-
<line num="236" count="
|
|
117
|
-
<line num="240" count="
|
|
118
|
-
<line num="241" count="
|
|
119
|
-
<line num="243" count="
|
|
120
|
-
<line num="253" count="
|
|
121
|
-
<line num="254" count="
|
|
122
|
-
<line num="255" count="
|
|
123
|
-
<line num="258" count="
|
|
124
|
-
<line num="259" count="
|
|
125
|
-
<line num="260" count="
|
|
126
|
-
<line num="263" count="
|
|
127
|
-
<line num="264" count="
|
|
128
|
-
<line num="265" count="
|
|
240
|
+
<line num="231" count="5" type="stmt"/>
|
|
241
|
+
<line num="232" count="5" type="stmt"/>
|
|
242
|
+
<line num="233" count="5" type="stmt"/>
|
|
243
|
+
<line num="234" count="5" type="stmt"/>
|
|
244
|
+
<line num="236" count="5" type="stmt"/>
|
|
245
|
+
<line num="240" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
246
|
+
<line num="241" count="2" type="stmt"/>
|
|
247
|
+
<line num="243" count="5" type="stmt"/>
|
|
248
|
+
<line num="253" count="5" type="cond" truecount="7" falsecount="2"/>
|
|
249
|
+
<line num="254" count="3" type="stmt"/>
|
|
250
|
+
<line num="255" count="3" type="stmt"/>
|
|
251
|
+
<line num="258" count="2" type="stmt"/>
|
|
252
|
+
<line num="259" count="2" type="stmt"/>
|
|
253
|
+
<line num="260" count="2" type="stmt"/>
|
|
254
|
+
<line num="263" count="2" type="stmt"/>
|
|
255
|
+
<line num="264" count="2" type="stmt"/>
|
|
256
|
+
<line num="265" count="2" type="stmt"/>
|
|
129
257
|
<line num="267" count="0" type="stmt"/>
|
|
130
|
-
<line num="272" count="
|
|
258
|
+
<line num="272" count="5" type="stmt"/>
|
|
131
259
|
<line num="273" count="0" type="stmt"/>
|
|
132
|
-
<line num="276" count="
|
|
133
|
-
<line num="277" count="
|
|
134
|
-
<line num="278" count="
|
|
135
|
-
<line num="281" count="
|
|
136
|
-
<line num="282" count="
|
|
137
|
-
<line num="287" count="
|
|
260
|
+
<line num="276" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
261
|
+
<line num="277" count="3" type="stmt"/>
|
|
262
|
+
<line num="278" count="3" type="stmt"/>
|
|
263
|
+
<line num="281" count="2" type="stmt"/>
|
|
264
|
+
<line num="282" count="2" type="stmt"/>
|
|
265
|
+
<line num="287" count="5" type="cond" truecount="0" falsecount="1"/>
|
|
138
266
|
<line num="288" count="0" type="stmt"/>
|
|
139
|
-
<line num="290" count="
|
|
140
|
-
<line num="299" count="2" type="
|
|
267
|
+
<line num="290" count="5" type="stmt"/>
|
|
268
|
+
<line num="299" count="2" type="cond" truecount="2" falsecount="0"/>
|
|
141
269
|
</file>
|
|
142
270
|
<file name="Method.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/Method.ts">
|
|
143
271
|
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
144
|
-
<line num="4" count="
|
|
272
|
+
<line num="4" count="3" type="stmt"/>
|
|
145
273
|
</file>
|
|
146
274
|
<file name="Root.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/Root.ts">
|
|
147
|
-
<metrics statements="
|
|
275
|
+
<metrics statements="33" coveredstatements="33" conditionals="13" coveredconditionals="13" methods="6" coveredmethods="6"/>
|
|
276
|
+
<line num="1" count="4" type="stmt"/>
|
|
277
|
+
<line num="2" count="4" type="stmt"/>
|
|
278
|
+
<line num="5" count="4" type="stmt"/>
|
|
279
|
+
<line num="7" count="4" type="stmt"/>
|
|
280
|
+
<line num="8" count="25" type="stmt"/>
|
|
281
|
+
<line num="9" count="25" type="stmt"/>
|
|
282
|
+
<line num="10" count="25" type="stmt"/>
|
|
283
|
+
<line num="15" count="25" type="cond" truecount="2" falsecount="0"/>
|
|
284
|
+
<line num="16" count="1" type="stmt"/>
|
|
285
|
+
<line num="18" count="24" type="stmt"/>
|
|
286
|
+
<line num="20" count="25" type="stmt"/>
|
|
287
|
+
<line num="24" count="4" type="stmt"/>
|
|
288
|
+
<line num="25" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
289
|
+
<line num="26" count="1" type="stmt"/>
|
|
290
|
+
<line num="28" count="3" type="stmt"/>
|
|
291
|
+
<line num="32" count="18" type="stmt"/>
|
|
292
|
+
<line num="33" count="18" type="cond" truecount="3" falsecount="0"/>
|
|
293
|
+
<line num="34" count="2" type="stmt"/>
|
|
294
|
+
<line num="36" count="16" type="stmt"/>
|
|
295
|
+
<line num="43" count="36" type="cond" truecount="1" falsecount="0"/>
|
|
296
|
+
<line num="44" count="29" type="stmt"/>
|
|
297
|
+
<line num="49" count="18" type="stmt"/>
|
|
298
|
+
<line num="50" count="18" type="cond" truecount="1" falsecount="0"/>
|
|
299
|
+
<line num="51" count="5" type="cond" truecount="2" falsecount="0"/>
|
|
300
|
+
<line num="52" count="4" type="stmt"/>
|
|
301
|
+
<line num="54" count="13" type="stmt"/>
|
|
302
|
+
<line num="56" count="1" type="stmt"/>
|
|
303
|
+
<line num="57" count="1" type="stmt"/>
|
|
304
|
+
<line num="62" count="3" type="stmt"/>
|
|
305
|
+
<line num="63" count="3" type="cond" truecount="2" falsecount="0"/>
|
|
306
|
+
<line num="64" count="2" type="stmt"/>
|
|
307
|
+
<line num="66" count="1" type="stmt"/>
|
|
308
|
+
<line num="68" count="3" type="stmt"/>
|
|
309
|
+
</file>
|
|
310
|
+
<file name="Service.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/Service.ts">
|
|
311
|
+
<metrics statements="269" coveredstatements="221" conditionals="131" coveredconditionals="99" methods="48" coveredmethods="43"/>
|
|
148
312
|
<line num="1" count="3" type="stmt"/>
|
|
149
313
|
<line num="2" count="3" type="stmt"/>
|
|
314
|
+
<line num="4" count="3" type="stmt"/>
|
|
315
|
+
<line num="5" count="3" type="stmt"/>
|
|
150
316
|
<line num="6" count="3" type="stmt"/>
|
|
151
|
-
<line num="7" count="
|
|
152
|
-
<line num="8" count="
|
|
153
|
-
<line num="9" count="
|
|
154
|
-
<line num="
|
|
155
|
-
<line num="
|
|
317
|
+
<line num="7" count="3" type="stmt"/>
|
|
318
|
+
<line num="8" count="3" type="stmt"/>
|
|
319
|
+
<line num="9" count="3" type="stmt"/>
|
|
320
|
+
<line num="11" count="3" type="stmt"/>
|
|
321
|
+
<line num="12" count="3" type="stmt"/>
|
|
322
|
+
<line num="13" count="3" type="stmt"/>
|
|
323
|
+
<line num="14" count="3" type="stmt"/>
|
|
324
|
+
<line num="15" count="3" type="stmt"/>
|
|
325
|
+
<line num="16" count="3" type="stmt"/>
|
|
156
326
|
<line num="17" count="3" type="stmt"/>
|
|
157
|
-
<line num="18" count="3" type="
|
|
158
|
-
<line num="
|
|
159
|
-
<line num="21" count="
|
|
160
|
-
<line num="
|
|
161
|
-
<line num="
|
|
162
|
-
<line num="27" count="2" type="stmt"/>
|
|
327
|
+
<line num="18" count="3" type="stmt"/>
|
|
328
|
+
<line num="20" count="3" type="stmt"/>
|
|
329
|
+
<line num="21" count="12" type="stmt"/>
|
|
330
|
+
<line num="27" count="12" type="stmt"/>
|
|
331
|
+
<line num="28" count="12" type="stmt"/>
|
|
163
332
|
<line num="29" count="12" type="stmt"/>
|
|
164
|
-
<line num="
|
|
165
|
-
<line num="
|
|
166
|
-
<line num="
|
|
167
|
-
<line num="
|
|
168
|
-
<line num="
|
|
169
|
-
<line num="
|
|
170
|
-
<line num="
|
|
171
|
-
<line num="
|
|
172
|
-
<line num="
|
|
173
|
-
<line num="
|
|
174
|
-
<line num="
|
|
175
|
-
<line num="
|
|
176
|
-
<line num="
|
|
177
|
-
<line num="61" count="3" type="stmt"/>
|
|
178
|
-
</file>
|
|
179
|
-
<file name="Service.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/Service.ts">
|
|
180
|
-
<metrics statements="266" coveredstatements="205" conditionals="130" coveredconditionals="82" methods="47" coveredmethods="39"/>
|
|
181
|
-
<line num="1" count="2" type="stmt"/>
|
|
182
|
-
<line num="2" count="2" type="stmt"/>
|
|
183
|
-
<line num="4" count="2" type="stmt"/>
|
|
184
|
-
<line num="5" count="2" type="stmt"/>
|
|
185
|
-
<line num="6" count="2" type="stmt"/>
|
|
186
|
-
<line num="7" count="2" type="stmt"/>
|
|
187
|
-
<line num="8" count="2" type="stmt"/>
|
|
188
|
-
<line num="9" count="2" type="stmt"/>
|
|
189
|
-
<line num="11" count="2" type="stmt"/>
|
|
190
|
-
<line num="12" count="2" type="stmt"/>
|
|
191
|
-
<line num="13" count="2" type="stmt"/>
|
|
192
|
-
<line num="14" count="2" type="stmt"/>
|
|
193
|
-
<line num="15" count="2" type="stmt"/>
|
|
194
|
-
<line num="16" count="2" type="stmt"/>
|
|
195
|
-
<line num="17" count="2" type="stmt"/>
|
|
196
|
-
<line num="18" count="2" type="stmt"/>
|
|
197
|
-
<line num="20" count="2" type="stmt"/>
|
|
198
|
-
<line num="21" count="9" type="stmt"/>
|
|
199
|
-
<line num="27" count="9" type="stmt"/>
|
|
200
|
-
<line num="28" count="9" type="stmt"/>
|
|
201
|
-
<line num="29" count="9" type="stmt"/>
|
|
202
|
-
<line num="31" count="9" type="stmt"/>
|
|
203
|
-
<line num="32" count="9" type="stmt"/>
|
|
204
|
-
<line num="34" count="9" type="stmt"/>
|
|
205
|
-
<line num="35" count="9" type="stmt"/>
|
|
206
|
-
<line num="36" count="9" type="cond" truecount="1" falsecount="0"/>
|
|
207
|
-
<line num="37" count="2" type="stmt"/>
|
|
208
|
-
<line num="38" count="2" type="stmt"/>
|
|
209
|
-
<line num="39" count="4" type="stmt"/>
|
|
210
|
-
<line num="40" count="0" type="stmt"/>
|
|
211
|
-
<line num="42" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
212
|
-
<line num="44" count="0" type="cond" truecount="0" falsecount="9"/>
|
|
213
|
-
<line num="45" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
214
|
-
<line num="47" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
333
|
+
<line num="31" count="12" type="stmt"/>
|
|
334
|
+
<line num="32" count="12" type="stmt"/>
|
|
335
|
+
<line num="34" count="12" type="stmt"/>
|
|
336
|
+
<line num="35" count="12" type="stmt"/>
|
|
337
|
+
<line num="36" count="12" type="cond" truecount="1" falsecount="0"/>
|
|
338
|
+
<line num="37" count="3" type="stmt"/>
|
|
339
|
+
<line num="38" count="3" type="stmt"/>
|
|
340
|
+
<line num="39" count="6" type="stmt"/>
|
|
341
|
+
<line num="40" count="2" type="stmt"/>
|
|
342
|
+
<line num="42" count="2" type="cond" truecount="3" falsecount="1"/>
|
|
343
|
+
<line num="44" count="2" type="cond" truecount="8" falsecount="1"/>
|
|
344
|
+
<line num="45" count="1" type="cond" truecount="3" falsecount="1"/>
|
|
345
|
+
<line num="47" count="1" type="cond" truecount="0" falsecount="1"/>
|
|
215
346
|
<line num="48" count="0" type="stmt"/>
|
|
216
|
-
<line num="51" count="
|
|
217
|
-
<line num="54" count="
|
|
218
|
-
<line num="56" count="
|
|
219
|
-
<line num="58" count="
|
|
220
|
-
<line num="61" count="
|
|
221
|
-
<line num="68" count="
|
|
222
|
-
<line num="73" count="
|
|
223
|
-
<line num="76" count="
|
|
224
|
-
<line num="77" count="
|
|
347
|
+
<line num="51" count="1" type="stmt"/>
|
|
348
|
+
<line num="54" count="2" type="stmt"/>
|
|
349
|
+
<line num="56" count="2" type="stmt"/>
|
|
350
|
+
<line num="58" count="6" type="stmt"/>
|
|
351
|
+
<line num="61" count="12" type="stmt"/>
|
|
352
|
+
<line num="68" count="12" type="stmt"/>
|
|
353
|
+
<line num="73" count="12" type="stmt"/>
|
|
354
|
+
<line num="76" count="12" type="stmt"/>
|
|
355
|
+
<line num="77" count="12" type="stmt"/>
|
|
225
356
|
<line num="90" count="2" type="stmt"/>
|
|
226
357
|
<line num="91" count="2" type="stmt"/>
|
|
227
358
|
<line num="92" count="2" type="stmt"/>
|
|
@@ -231,15 +362,15 @@
|
|
|
231
362
|
<line num="97" count="0" type="stmt"/>
|
|
232
363
|
<line num="98" count="0" type="stmt"/>
|
|
233
364
|
<line num="100" count="2" type="stmt"/>
|
|
234
|
-
<line num="107" count="
|
|
235
|
-
<line num="108" count="
|
|
236
|
-
<line num="109" count="
|
|
237
|
-
<line num="110" count="
|
|
238
|
-
<line num="111" count="
|
|
239
|
-
<line num="114" count="
|
|
240
|
-
<line num="115" count="
|
|
241
|
-
<line num="116" count="
|
|
242
|
-
<line num="117" count="
|
|
365
|
+
<line num="107" count="10" type="stmt"/>
|
|
366
|
+
<line num="108" count="10" type="stmt"/>
|
|
367
|
+
<line num="109" count="10" type="cond" truecount="5" falsecount="0"/>
|
|
368
|
+
<line num="110" count="1" type="stmt"/>
|
|
369
|
+
<line num="111" count="1" type="stmt"/>
|
|
370
|
+
<line num="114" count="10" type="stmt"/>
|
|
371
|
+
<line num="115" count="10" type="stmt"/>
|
|
372
|
+
<line num="116" count="10" type="stmt"/>
|
|
373
|
+
<line num="117" count="10" type="cond" truecount="5" falsecount="0"/>
|
|
243
374
|
<line num="118" count="3" type="stmt"/>
|
|
244
375
|
<line num="119" count="3" type="stmt"/>
|
|
245
376
|
<line num="121" count="2" type="stmt"/>
|
|
@@ -248,15 +379,15 @@
|
|
|
248
379
|
<line num="124" count="2" type="stmt"/>
|
|
249
380
|
<line num="127" count="0" type="stmt"/>
|
|
250
381
|
<line num="131" count="3" type="stmt"/>
|
|
251
|
-
<line num="135" count="
|
|
252
|
-
<line num="140" count="
|
|
253
|
-
<line num="147" count="
|
|
254
|
-
<line num="148" count="
|
|
255
|
-
<line num="149" count="
|
|
256
|
-
<line num="151" count="
|
|
257
|
-
<line num="152" count="
|
|
258
|
-
<line num="159" count="
|
|
259
|
-
<line num="160" count="
|
|
382
|
+
<line num="135" count="10" type="stmt"/>
|
|
383
|
+
<line num="140" count="10" type="stmt"/>
|
|
384
|
+
<line num="147" count="10" type="stmt"/>
|
|
385
|
+
<line num="148" count="10" type="stmt"/>
|
|
386
|
+
<line num="149" count="14" type="stmt"/>
|
|
387
|
+
<line num="151" count="10" type="stmt"/>
|
|
388
|
+
<line num="152" count="10" type="stmt"/>
|
|
389
|
+
<line num="159" count="11" type="stmt"/>
|
|
390
|
+
<line num="160" count="11" type="cond" truecount="4" falsecount="0"/>
|
|
260
391
|
<line num="167" count="1" type="cond" truecount="1" falsecount="1"/>
|
|
261
392
|
<line num="168" count="1" type="stmt"/>
|
|
262
393
|
<line num="169" count="1" type="stmt"/>
|
|
@@ -271,136 +402,136 @@
|
|
|
271
402
|
<line num="187" count="0" type="stmt"/>
|
|
272
403
|
<line num="189" count="1" type="stmt"/>
|
|
273
404
|
<line num="190" count="1" type="stmt"/>
|
|
274
|
-
<line num="195" count="
|
|
275
|
-
<line num="202" count="
|
|
276
|
-
<line num="203" count="
|
|
277
|
-
<line num="204" count="
|
|
278
|
-
<line num="205" count="
|
|
279
|
-
<line num="206" count="
|
|
280
|
-
<line num="211" count="
|
|
281
|
-
<line num="212" count="
|
|
282
|
-
<line num="218" count="
|
|
283
|
-
<line num="225" count="
|
|
284
|
-
<line num="228" count="
|
|
285
|
-
<line num="229" count="
|
|
405
|
+
<line num="195" count="1" type="stmt"/>
|
|
406
|
+
<line num="202" count="4" type="stmt"/>
|
|
407
|
+
<line num="203" count="4" type="stmt"/>
|
|
408
|
+
<line num="204" count="4" type="stmt"/>
|
|
409
|
+
<line num="205" count="4" type="stmt"/>
|
|
410
|
+
<line num="206" count="2" type="stmt"/>
|
|
411
|
+
<line num="211" count="2" type="stmt"/>
|
|
412
|
+
<line num="212" count="2" type="stmt"/>
|
|
413
|
+
<line num="218" count="2" type="stmt"/>
|
|
414
|
+
<line num="225" count="3" type="stmt"/>
|
|
415
|
+
<line num="228" count="16" type="stmt"/>
|
|
416
|
+
<line num="229" count="16" type="cond" truecount="0" falsecount="1"/>
|
|
286
417
|
<line num="230" count="0" type="stmt"/>
|
|
287
|
-
<line num="232" count="
|
|
288
|
-
<line num="233" count="
|
|
418
|
+
<line num="232" count="16" type="stmt"/>
|
|
419
|
+
<line num="233" count="16" type="stmt"/>
|
|
289
420
|
<line num="235" count="0" type="stmt"/>
|
|
290
|
-
<line num="242" count="
|
|
421
|
+
<line num="242" count="3" type="stmt"/>
|
|
291
422
|
<line num="243" count="0" type="stmt"/>
|
|
292
|
-
<line num="245" count="
|
|
293
|
-
<line num="248" count="
|
|
294
|
-
<line num="255" count="
|
|
295
|
-
<line num="256" count="
|
|
296
|
-
<line num="257" count="
|
|
297
|
-
<line num="258" count="
|
|
298
|
-
<line num="259" count="
|
|
423
|
+
<line num="245" count="3" type="stmt"/>
|
|
424
|
+
<line num="248" count="3" type="stmt"/>
|
|
425
|
+
<line num="255" count="4" type="stmt"/>
|
|
426
|
+
<line num="256" count="4" type="stmt"/>
|
|
427
|
+
<line num="257" count="4" type="stmt"/>
|
|
428
|
+
<line num="258" count="5" type="stmt"/>
|
|
429
|
+
<line num="259" count="5" type="cond" truecount="2" falsecount="1"/>
|
|
299
430
|
<line num="260" count="0" type="stmt"/>
|
|
300
|
-
<line num="262" count="
|
|
301
|
-
<line num="263" count="
|
|
302
|
-
<line num="264" count="
|
|
303
|
-
<line num="265" count="
|
|
304
|
-
<line num="266" count="
|
|
305
|
-
<line num="267" count="
|
|
431
|
+
<line num="262" count="5" type="stmt"/>
|
|
432
|
+
<line num="263" count="5" type="stmt"/>
|
|
433
|
+
<line num="264" count="5" type="stmt"/>
|
|
434
|
+
<line num="265" count="5" type="stmt"/>
|
|
435
|
+
<line num="266" count="5" type="stmt"/>
|
|
436
|
+
<line num="267" count="5" type="cond" truecount="3" falsecount="1"/>
|
|
306
437
|
<line num="268" count="0" type="stmt"/>
|
|
307
|
-
<line num="270" count="
|
|
308
|
-
<line num="271" count="
|
|
309
|
-
<line num="272" count="
|
|
310
|
-
<line num="273" count="
|
|
438
|
+
<line num="270" count="5" type="stmt"/>
|
|
439
|
+
<line num="271" count="5" type="cond" truecount="7" falsecount="2"/>
|
|
440
|
+
<line num="272" count="3" type="stmt"/>
|
|
441
|
+
<line num="273" count="3" type="cond" truecount="3" falsecount="0"/>
|
|
311
442
|
<line num="274" count="1" type="stmt"/>
|
|
312
443
|
<line num="275" count="1" type="stmt"/>
|
|
313
|
-
<line num="277" count="
|
|
314
|
-
<line num="278" count="
|
|
315
|
-
<line num="280" count="
|
|
316
|
-
<line num="281" count="
|
|
317
|
-
<line num="282" count="
|
|
318
|
-
<line num="284" count="
|
|
319
|
-
<line num="285" count="
|
|
320
|
-
<line num="286" count="
|
|
321
|
-
<line num="287" count="
|
|
322
|
-
<line num="288" count="
|
|
444
|
+
<line num="277" count="2" type="stmt"/>
|
|
445
|
+
<line num="278" count="2" type="stmt"/>
|
|
446
|
+
<line num="280" count="2" type="stmt"/>
|
|
447
|
+
<line num="281" count="2" type="stmt"/>
|
|
448
|
+
<line num="282" count="2" type="stmt"/>
|
|
449
|
+
<line num="284" count="2" type="stmt"/>
|
|
450
|
+
<line num="285" count="2" type="stmt"/>
|
|
451
|
+
<line num="286" count="2" type="cond" truecount="9" falsecount="2"/>
|
|
452
|
+
<line num="287" count="2" type="stmt"/>
|
|
453
|
+
<line num="288" count="2" type="stmt"/>
|
|
323
454
|
<line num="290" count="0" type="stmt"/>
|
|
324
455
|
<line num="292" count="0" type="stmt"/>
|
|
325
456
|
<line num="293" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
326
457
|
<line num="294" count="0" type="stmt"/>
|
|
327
458
|
<line num="295" count="0" type="stmt"/>
|
|
328
459
|
<line num="297" count="0" type="stmt"/>
|
|
329
|
-
<line num="306" count="
|
|
330
|
-
<line num="307" count="
|
|
331
|
-
<line num="309" count="
|
|
332
|
-
<line num="310" count="
|
|
333
|
-
<line num="312" count="
|
|
334
|
-
<line num="313" count="
|
|
335
|
-
<line num="318" count="
|
|
336
|
-
<line num="319" count="
|
|
337
|
-
<line num="322" count="
|
|
338
|
-
<line num="323" count="
|
|
460
|
+
<line num="306" count="10" type="stmt"/>
|
|
461
|
+
<line num="307" count="10" type="stmt"/>
|
|
462
|
+
<line num="309" count="10" type="stmt"/>
|
|
463
|
+
<line num="310" count="10" type="stmt"/>
|
|
464
|
+
<line num="312" count="10" type="stmt"/>
|
|
465
|
+
<line num="313" count="10" type="stmt"/>
|
|
466
|
+
<line num="318" count="10" type="stmt"/>
|
|
467
|
+
<line num="319" count="10" type="stmt"/>
|
|
468
|
+
<line num="322" count="10" type="stmt"/>
|
|
469
|
+
<line num="323" count="10" type="stmt"/>
|
|
339
470
|
<line num="325" count="0" type="stmt"/>
|
|
340
471
|
<line num="326" count="0" type="stmt"/>
|
|
341
472
|
<line num="327" count="0" type="stmt"/>
|
|
342
473
|
<line num="328" count="0" type="stmt"/>
|
|
343
474
|
<line num="329" count="0" type="stmt"/>
|
|
344
|
-
<line num="337" count="
|
|
345
|
-
<line num="338" count="
|
|
346
|
-
<line num="339" count="
|
|
347
|
-
<line num="340" count="
|
|
348
|
-
<line num="341" count="
|
|
349
|
-
<line num="342" count="
|
|
350
|
-
<line num="345" count="
|
|
351
|
-
<line num="347" count="
|
|
352
|
-
<line num="348" count="
|
|
353
|
-
<line num="349" count="
|
|
354
|
-
<line num="350" count="
|
|
355
|
-
<line num="351" count="
|
|
356
|
-
<line num="352" count="
|
|
357
|
-
<line num="353" count="
|
|
475
|
+
<line num="337" count="14" type="stmt"/>
|
|
476
|
+
<line num="338" count="14" type="stmt"/>
|
|
477
|
+
<line num="339" count="14" type="stmt"/>
|
|
478
|
+
<line num="340" count="10" type="cond" truecount="4" falsecount="1"/>
|
|
479
|
+
<line num="341" count="5" type="stmt"/>
|
|
480
|
+
<line num="342" count="5" type="stmt"/>
|
|
481
|
+
<line num="345" count="5" type="stmt"/>
|
|
482
|
+
<line num="347" count="5" type="stmt"/>
|
|
483
|
+
<line num="348" count="5" type="stmt"/>
|
|
484
|
+
<line num="349" count="5" type="stmt"/>
|
|
485
|
+
<line num="350" count="5" type="stmt"/>
|
|
486
|
+
<line num="351" count="5" type="stmt"/>
|
|
487
|
+
<line num="352" count="5" type="stmt"/>
|
|
488
|
+
<line num="353" count="5" type="stmt"/>
|
|
358
489
|
<line num="355" count="0" type="stmt"/>
|
|
359
|
-
<line num="360" count="
|
|
360
|
-
<line num="361" count="
|
|
361
|
-
<line num="364" count="
|
|
362
|
-
<line num="365" count="
|
|
363
|
-
<line num="366" count="
|
|
364
|
-
<line num="368" count="
|
|
365
|
-
<line num="369" count="
|
|
366
|
-
<line num="375" count="
|
|
367
|
-
<line num="378" count="
|
|
490
|
+
<line num="360" count="14" type="cond" truecount="1" falsecount="0"/>
|
|
491
|
+
<line num="361" count="4" type="stmt"/>
|
|
492
|
+
<line num="364" count="14" type="stmt"/>
|
|
493
|
+
<line num="365" count="14" type="stmt"/>
|
|
494
|
+
<line num="366" count="14" type="stmt"/>
|
|
495
|
+
<line num="368" count="14" type="cond" truecount="5" falsecount="0"/>
|
|
496
|
+
<line num="369" count="5" type="stmt"/>
|
|
497
|
+
<line num="375" count="5" type="stmt"/>
|
|
498
|
+
<line num="378" count="14" type="stmt"/>
|
|
368
499
|
<line num="380" count="0" type="cond" truecount="0" falsecount="2"/>
|
|
369
500
|
<line num="381" count="0" type="stmt"/>
|
|
370
501
|
<line num="383" count="0" type="stmt"/>
|
|
371
502
|
<line num="385" count="0" type="stmt"/>
|
|
372
|
-
<line num="393" count="
|
|
373
|
-
<line num="394" count="
|
|
374
|
-
<line num="395" count="
|
|
375
|
-
<line num="396" count="
|
|
376
|
-
<line num="398" count="
|
|
377
|
-
<line num="399" count="
|
|
378
|
-
<line num="400" count="
|
|
379
|
-
<line num="401" count="
|
|
380
|
-
<line num="404" count="
|
|
503
|
+
<line num="393" count="4" type="stmt"/>
|
|
504
|
+
<line num="394" count="4" type="cond" truecount="5" falsecount="1"/>
|
|
505
|
+
<line num="395" count="4" type="stmt"/>
|
|
506
|
+
<line num="396" count="4" type="stmt"/>
|
|
507
|
+
<line num="398" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
508
|
+
<line num="399" count="1" type="stmt"/>
|
|
509
|
+
<line num="400" count="1" type="stmt"/>
|
|
510
|
+
<line num="401" count="1" type="stmt"/>
|
|
511
|
+
<line num="404" count="4" type="cond" truecount="6" falsecount="3"/>
|
|
381
512
|
<line num="405" count="0" type="stmt"/>
|
|
382
513
|
<line num="406" count="0" type="cond" truecount="0" falsecount="4"/>
|
|
383
514
|
<line num="407" count="0" type="stmt"/>
|
|
384
|
-
<line num="411" count="
|
|
515
|
+
<line num="411" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
385
516
|
<line num="412" count="1" type="stmt"/>
|
|
386
517
|
<line num="413" count="1" type="stmt"/>
|
|
387
518
|
<line num="414" count="1" type="stmt"/>
|
|
388
519
|
<line num="417" count="0" type="stmt"/>
|
|
389
|
-
<line num="420" count="
|
|
390
|
-
<line num="424" count="
|
|
391
|
-
<line num="431" count="
|
|
520
|
+
<line num="420" count="4" type="stmt"/>
|
|
521
|
+
<line num="424" count="4" type="stmt"/>
|
|
522
|
+
<line num="431" count="42" type="stmt"/>
|
|
392
523
|
<line num="432" count="0" type="stmt"/>
|
|
393
524
|
<line num="433" count="0" type="stmt"/>
|
|
394
|
-
<line num="441" count="
|
|
525
|
+
<line num="441" count="28" type="stmt"/>
|
|
395
526
|
<line num="442" count="0" type="stmt"/>
|
|
396
527
|
<line num="443" count="0" type="stmt"/>
|
|
397
|
-
<line num="451" count="
|
|
398
|
-
<line num="452" count="
|
|
399
|
-
<line num="453" count="
|
|
400
|
-
<line num="454" count="
|
|
401
|
-
<line num="455" count="
|
|
402
|
-
<line num="462" count="
|
|
403
|
-
<line num="463" count="
|
|
528
|
+
<line num="451" count="14" type="stmt"/>
|
|
529
|
+
<line num="452" count="14" type="stmt"/>
|
|
530
|
+
<line num="453" count="14" type="stmt"/>
|
|
531
|
+
<line num="454" count="14" type="stmt"/>
|
|
532
|
+
<line num="455" count="14" type="stmt"/>
|
|
533
|
+
<line num="462" count="14" type="cond" truecount="3" falsecount="0"/>
|
|
534
|
+
<line num="463" count="5" type="stmt"/>
|
|
404
535
|
<line num="465" count="9" type="stmt"/>
|
|
405
536
|
<line num="466" count="9" type="stmt"/>
|
|
406
537
|
<line num="467" count="1" type="cond" truecount="3" falsecount="0"/>
|
|
@@ -408,129 +539,239 @@
|
|
|
408
539
|
<line num="469" count="1" type="stmt"/>
|
|
409
540
|
<line num="471" count="0" type="stmt"/>
|
|
410
541
|
<line num="474" count="9" type="stmt"/>
|
|
411
|
-
<line num="
|
|
412
|
-
<line num="
|
|
413
|
-
<line num="
|
|
414
|
-
<line num="
|
|
415
|
-
<line num="
|
|
416
|
-
<line num="
|
|
417
|
-
<line num="
|
|
418
|
-
<line num="
|
|
419
|
-
<line num="
|
|
420
|
-
<line num="
|
|
421
|
-
<line num="
|
|
422
|
-
<line num="505" count="
|
|
542
|
+
<line num="475" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
543
|
+
<line num="476" count="0" type="stmt"/>
|
|
544
|
+
<line num="478" count="0" type="stmt"/>
|
|
545
|
+
<line num="486" count="14" type="stmt"/>
|
|
546
|
+
<line num="487" count="0" type="stmt"/>
|
|
547
|
+
<line num="495" count="9" type="stmt"/>
|
|
548
|
+
<line num="499" count="4" type="stmt"/>
|
|
549
|
+
<line num="500" count="4" type="stmt"/>
|
|
550
|
+
<line num="501" count="4" type="stmt"/>
|
|
551
|
+
<line num="502" count="4" type="stmt"/>
|
|
552
|
+
<line num="503" count="4" type="stmt"/>
|
|
553
|
+
<line num="505" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
423
554
|
<line num="506" count="0" type="stmt"/>
|
|
424
555
|
<line num="507" count="0" type="stmt"/>
|
|
425
|
-
<line num="
|
|
426
|
-
<line num="
|
|
427
|
-
<line num="
|
|
428
|
-
<line num="
|
|
429
|
-
<line num="
|
|
430
|
-
<line num="
|
|
431
|
-
<line num="
|
|
432
|
-
<line num="
|
|
433
|
-
<line num="
|
|
434
|
-
<line num="
|
|
435
|
-
<line num="
|
|
436
|
-
<line num="528" count="
|
|
437
|
-
<line num="529" count="
|
|
438
|
-
<line num="531" count="
|
|
439
|
-
<line num="
|
|
440
|
-
<line num="
|
|
441
|
-
<line num="
|
|
442
|
-
<line num="
|
|
443
|
-
<line num="
|
|
444
|
-
<line num="
|
|
445
|
-
<line num="
|
|
446
|
-
<line num="
|
|
556
|
+
<line num="510" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
557
|
+
<line num="511" count="0" type="stmt"/>
|
|
558
|
+
<line num="512" count="0" type="stmt"/>
|
|
559
|
+
<line num="514" count="4" type="stmt"/>
|
|
560
|
+
<line num="517" count="4" type="stmt"/>
|
|
561
|
+
<line num="521" count="4" type="stmt"/>
|
|
562
|
+
<line num="522" count="4" type="stmt"/>
|
|
563
|
+
<line num="523" count="8" type="cond" truecount="0" falsecount="1"/>
|
|
564
|
+
<line num="524" count="0" type="stmt"/>
|
|
565
|
+
<line num="526" count="8" type="stmt"/>
|
|
566
|
+
<line num="527" count="12" type="cond" truecount="5" falsecount="1"/>
|
|
567
|
+
<line num="528" count="8" type="cond" truecount="1" falsecount="0"/>
|
|
568
|
+
<line num="529" count="4" type="stmt"/>
|
|
569
|
+
<line num="531" count="4" type="stmt"/>
|
|
570
|
+
<line num="533" count="4" type="cond" truecount="0" falsecount="1"/>
|
|
571
|
+
<line num="534" count="0" type="stmt"/>
|
|
572
|
+
<line num="536" count="4" type="stmt"/>
|
|
573
|
+
<line num="540" count="2" type="stmt"/>
|
|
574
|
+
<line num="547" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
575
|
+
<line num="548" count="6" type="stmt"/>
|
|
576
|
+
<line num="549" count="6" type="stmt"/>
|
|
577
|
+
<line num="550" count="6" type="cond" truecount="2" falsecount="0"/>
|
|
578
|
+
<line num="551" count="6" type="cond" truecount="4" falsecount="0"/>
|
|
579
|
+
<line num="552" count="3" type="stmt"/>
|
|
580
|
+
<line num="559" count="3" type="stmt"/>
|
|
447
581
|
</file>
|
|
448
582
|
<file name="StreamManager.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/StreamManager.ts">
|
|
449
583
|
<metrics statements="50" coveredstatements="42" conditionals="41" coveredconditionals="25" methods="9" coveredmethods="9"/>
|
|
450
|
-
<line num="2" count="
|
|
451
|
-
<line num="12" count="
|
|
452
|
-
<line num="14" count="
|
|
453
|
-
<line num="15" count="
|
|
454
|
-
<line num="16" count="
|
|
455
|
-
<line num="17" count="
|
|
456
|
-
<line num="18" count="
|
|
457
|
-
<line num="20" count="
|
|
458
|
-
<line num="32" count="
|
|
459
|
-
<line num="33" count="
|
|
460
|
-
<line num="37" count="
|
|
461
|
-
<line num="38" count="
|
|
462
|
-
<line num="41" count="
|
|
463
|
-
<line num="42" count="
|
|
464
|
-
<line num="44" count="
|
|
465
|
-
<line num="58" count="
|
|
584
|
+
<line num="2" count="3" type="stmt"/>
|
|
585
|
+
<line num="12" count="3" type="stmt"/>
|
|
586
|
+
<line num="14" count="3" type="stmt"/>
|
|
587
|
+
<line num="15" count="6" type="stmt"/>
|
|
588
|
+
<line num="16" count="6" type="stmt"/>
|
|
589
|
+
<line num="17" count="6" type="stmt"/>
|
|
590
|
+
<line num="18" count="6" type="stmt"/>
|
|
591
|
+
<line num="20" count="6" type="stmt"/>
|
|
592
|
+
<line num="32" count="6" type="stmt"/>
|
|
593
|
+
<line num="33" count="6" type="stmt"/>
|
|
594
|
+
<line num="37" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
595
|
+
<line num="38" count="5" type="stmt"/>
|
|
596
|
+
<line num="41" count="5" type="stmt"/>
|
|
597
|
+
<line num="42" count="5" type="stmt"/>
|
|
598
|
+
<line num="44" count="5" type="stmt"/>
|
|
599
|
+
<line num="58" count="5" type="stmt"/>
|
|
466
600
|
<line num="59" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
467
601
|
<line num="60" count="1" type="stmt"/>
|
|
468
602
|
<line num="62" count="0" type="stmt"/>
|
|
469
|
-
<line num="
|
|
603
|
+
<line num="64" count="5" type="cond" truecount="1" falsecount="0"/>
|
|
604
|
+
<line num="65" count="1" type="stmt"/>
|
|
470
605
|
<line num="66" count="1" type="stmt"/>
|
|
471
|
-
<line num="
|
|
472
|
-
<line num="
|
|
473
|
-
<line num="
|
|
606
|
+
<line num="69" count="4" type="stmt"/>
|
|
607
|
+
<line num="78" count="1" type="stmt"/>
|
|
608
|
+
<line num="80" count="1" type="stmt"/>
|
|
474
609
|
<line num="81" count="1" type="stmt"/>
|
|
475
|
-
<line num="
|
|
476
|
-
<line num="
|
|
477
|
-
<line num="
|
|
478
|
-
<line num="93" count="
|
|
479
|
-
<line num="
|
|
480
|
-
<line num="97" count="
|
|
481
|
-
<line num="98" count="0" type="
|
|
482
|
-
<line num="
|
|
483
|
-
<line num="101" count="0" type="
|
|
484
|
-
<line num="
|
|
485
|
-
<line num="
|
|
486
|
-
<line num="110" count="
|
|
487
|
-
<line num="
|
|
488
|
-
<line num="
|
|
489
|
-
<line num="115" count="
|
|
490
|
-
<line num="
|
|
491
|
-
<line num="
|
|
610
|
+
<line num="83" count="1" type="stmt"/>
|
|
611
|
+
<line num="85" count="1" type="stmt"/>
|
|
612
|
+
<line num="92" count="1" type="cond" truecount="3" falsecount="2"/>
|
|
613
|
+
<line num="93" count="0" type="stmt"/>
|
|
614
|
+
<line num="96" count="1" type="cond" truecount="3" falsecount="2"/>
|
|
615
|
+
<line num="97" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
616
|
+
<line num="98" count="0" type="stmt"/>
|
|
617
|
+
<line num="100" count="0" type="cond" truecount="0" falsecount="1"/>
|
|
618
|
+
<line num="101" count="0" type="stmt"/>
|
|
619
|
+
<line num="105" count="1" type="stmt"/>
|
|
620
|
+
<line num="109" count="5" type="stmt"/>
|
|
621
|
+
<line num="110" count="5" type="stmt"/>
|
|
622
|
+
<line num="112" count="5" type="stmt"/>
|
|
623
|
+
<line num="114" count="5" type="cond" truecount="1" falsecount="2"/>
|
|
624
|
+
<line num="115" count="0" type="stmt"/>
|
|
625
|
+
<line num="118" count="5" type="stmt"/>
|
|
626
|
+
<line num="122" count="1" type="stmt"/>
|
|
492
627
|
<line num="123" count="1" type="stmt"/>
|
|
493
|
-
<line num="124" count="1" type="
|
|
494
|
-
<line num="125" count="1" type="cond" truecount="
|
|
495
|
-
<line num="
|
|
496
|
-
<line num="
|
|
497
|
-
<line num="
|
|
498
|
-
<line num="
|
|
499
|
-
<line num="140" count="8" type="stmt"/>
|
|
628
|
+
<line num="124" count="1" type="cond" truecount="1" falsecount="0"/>
|
|
629
|
+
<line num="125" count="1" type="cond" truecount="2" falsecount="0"/>
|
|
630
|
+
<line num="127" count="0" type="stmt"/>
|
|
631
|
+
<line num="131" count="5" type="stmt"/>
|
|
632
|
+
<line num="135" count="12" type="stmt"/>
|
|
633
|
+
<line num="139" count="10" type="stmt"/>
|
|
500
634
|
</file>
|
|
501
635
|
<file name="index.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/index.ts">
|
|
502
636
|
<metrics statements="5" coveredstatements="5" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
503
|
-
<line num="1" count="
|
|
504
|
-
<line num="2" count="
|
|
505
|
-
<line num="3" count="
|
|
506
|
-
<line num="4" count="
|
|
507
|
-
<line num="5" count="
|
|
637
|
+
<line num="1" count="3" type="stmt"/>
|
|
638
|
+
<line num="2" count="3" type="stmt"/>
|
|
639
|
+
<line num="3" count="3" type="stmt"/>
|
|
640
|
+
<line num="4" count="3" type="stmt"/>
|
|
641
|
+
<line num="5" count="3" type="stmt"/>
|
|
508
642
|
</file>
|
|
509
643
|
<file name="injector.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/injector.ts">
|
|
510
644
|
<metrics statements="21" coveredstatements="20" conditionals="2" coveredconditionals="1" methods="6" coveredmethods="6"/>
|
|
511
|
-
<line num="1" count="
|
|
512
|
-
<line num="9" count="
|
|
513
|
-
<line num="10" count="
|
|
514
|
-
<line num="12" count="
|
|
515
|
-
<line num="13" count="
|
|
516
|
-
<line num="15" count="
|
|
517
|
-
<line num="16" count="
|
|
518
|
-
<line num="17" count="
|
|
519
|
-
<line num="18" count="
|
|
520
|
-
<line num="19" count="
|
|
521
|
-
<line num="24" count="
|
|
645
|
+
<line num="1" count="3" type="stmt"/>
|
|
646
|
+
<line num="9" count="3" type="stmt"/>
|
|
647
|
+
<line num="10" count="3" type="stmt"/>
|
|
648
|
+
<line num="12" count="3" type="stmt"/>
|
|
649
|
+
<line num="13" count="3" type="stmt"/>
|
|
650
|
+
<line num="15" count="3" type="stmt"/>
|
|
651
|
+
<line num="16" count="6" type="stmt"/>
|
|
652
|
+
<line num="17" count="6" type="stmt"/>
|
|
653
|
+
<line num="18" count="6" type="stmt"/>
|
|
654
|
+
<line num="19" count="6" type="stmt"/>
|
|
655
|
+
<line num="24" count="3" type="cond" truecount="1" falsecount="1"/>
|
|
522
656
|
<line num="25" count="0" type="stmt"/>
|
|
523
|
-
<line num="27" count="
|
|
524
|
-
<line num="28" count="
|
|
525
|
-
<line num="30" count="
|
|
526
|
-
<line num="33" count="
|
|
527
|
-
<line num="34" count="
|
|
528
|
-
<line num="35" count="
|
|
529
|
-
<line num="39" count="
|
|
657
|
+
<line num="27" count="3" type="stmt"/>
|
|
658
|
+
<line num="28" count="3" type="stmt"/>
|
|
659
|
+
<line num="30" count="3" type="stmt"/>
|
|
660
|
+
<line num="33" count="3" type="stmt"/>
|
|
661
|
+
<line num="34" count="2" type="stmt"/>
|
|
662
|
+
<line num="35" count="2" type="stmt"/>
|
|
663
|
+
<line num="39" count="3" type="stmt"/>
|
|
530
664
|
<line num="40" count="1" type="stmt"/>
|
|
531
665
|
<line num="41" count="1" type="stmt"/>
|
|
532
666
|
</file>
|
|
533
667
|
</package>
|
|
668
|
+
<package name="src.Union">
|
|
669
|
+
<metrics statements="86" coveredstatements="42" conditionals="7" coveredconditionals="5" methods="56" coveredmethods="14"/>
|
|
670
|
+
<file name="Broker.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/Union/Broker.ts">
|
|
671
|
+
<metrics statements="40" coveredstatements="30" conditionals="7" coveredconditionals="5" methods="21" coveredmethods="11"/>
|
|
672
|
+
<line num="15" count="4" type="stmt"/>
|
|
673
|
+
<line num="16" count="4" type="stmt"/>
|
|
674
|
+
<line num="17" count="4" type="stmt"/>
|
|
675
|
+
<line num="18" count="4" type="stmt"/>
|
|
676
|
+
<line num="19" count="4" type="stmt"/>
|
|
677
|
+
<line num="20" count="4" type="stmt"/>
|
|
678
|
+
<line num="28" count="4" type="stmt"/>
|
|
679
|
+
<line num="31" count="1" type="stmt"/>
|
|
680
|
+
<line num="32" count="1" type="stmt"/>
|
|
681
|
+
<line num="33" count="1" type="stmt"/>
|
|
682
|
+
<line num="36" count="0" type="stmt"/>
|
|
683
|
+
<line num="39" count="0" type="stmt"/>
|
|
684
|
+
<line num="43" count="2" type="stmt"/>
|
|
685
|
+
<line num="46" count="3" type="stmt"/>
|
|
686
|
+
<line num="47" count="3" type="stmt"/>
|
|
687
|
+
<line num="49" count="4" type="cond" truecount="1" falsecount="0"/>
|
|
688
|
+
<line num="50" count="4" type="stmt"/>
|
|
689
|
+
<line num="53" count="4" type="stmt"/>
|
|
690
|
+
<line num="55" count="3" type="stmt"/>
|
|
691
|
+
<line num="57" count="3" type="stmt"/>
|
|
692
|
+
<line num="58" count="0" type="stmt"/>
|
|
693
|
+
<line num="61" count="3" type="stmt"/>
|
|
694
|
+
<line num="64" count="4" type="stmt"/>
|
|
695
|
+
<line num="65" count="4" type="cond" truecount="4" falsecount="2"/>
|
|
696
|
+
<line num="66" count="4" type="stmt"/>
|
|
697
|
+
<line num="68" count="4" type="stmt"/>
|
|
698
|
+
<line num="69" count="4" type="stmt"/>
|
|
699
|
+
<line num="71" count="4" type="stmt"/>
|
|
700
|
+
<line num="72" count="4" type="stmt"/>
|
|
701
|
+
<line num="73" count="4" type="stmt"/>
|
|
702
|
+
<line num="79" count="0" type="stmt"/>
|
|
703
|
+
<line num="82" count="3" type="stmt"/>
|
|
704
|
+
<line num="85" count="0" type="stmt"/>
|
|
705
|
+
<line num="88" count="0" type="stmt"/>
|
|
706
|
+
<line num="91" count="0" type="stmt"/>
|
|
707
|
+
<line num="94" count="3" type="stmt"/>
|
|
708
|
+
<line num="97" count="0" type="stmt"/>
|
|
709
|
+
<line num="100" count="1" type="stmt"/>
|
|
710
|
+
<line num="103" count="0" type="stmt"/>
|
|
711
|
+
<line num="106" count="0" type="stmt"/>
|
|
712
|
+
</file>
|
|
713
|
+
<file name="JetStreamClient.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/Union/JetStreamClient.ts">
|
|
714
|
+
<metrics statements="14" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="10" coveredmethods="0"/>
|
|
715
|
+
<line num="15" count="4" type="stmt"/>
|
|
716
|
+
<line num="17" count="4" type="stmt"/>
|
|
717
|
+
<line num="20" count="0" type="stmt"/>
|
|
718
|
+
<line num="23" count="0" type="stmt"/>
|
|
719
|
+
<line num="26" count="0" type="stmt"/>
|
|
720
|
+
<line num="29" count="0" type="stmt"/>
|
|
721
|
+
<line num="35" count="0" type="stmt"/>
|
|
722
|
+
<line num="38" count="0" type="stmt"/>
|
|
723
|
+
<line num="39" count="0" type="stmt"/>
|
|
724
|
+
<line num="40" count="0" type="stmt"/>
|
|
725
|
+
<line num="42" count="0" type="stmt"/>
|
|
726
|
+
<line num="44" count="0" type="stmt"/>
|
|
727
|
+
<line num="45" count="0" type="stmt"/>
|
|
728
|
+
<line num="48" count="0" type="stmt"/>
|
|
729
|
+
</file>
|
|
730
|
+
<file name="JetStreamManager.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/Union/JetStreamManager.ts">
|
|
731
|
+
<metrics statements="6" coveredstatements="4" conditionals="0" coveredconditionals="0" methods="3" coveredmethods="1"/>
|
|
732
|
+
<line num="3" count="4" type="stmt"/>
|
|
733
|
+
<line num="5" count="4" type="stmt"/>
|
|
734
|
+
<line num="7" count="4" type="stmt"/>
|
|
735
|
+
<line num="9" count="0" type="stmt"/>
|
|
736
|
+
<line num="12" count="0" type="stmt"/>
|
|
737
|
+
<line num="16" count="4" type="stmt"/>
|
|
738
|
+
</file>
|
|
739
|
+
<file name="StreamApi.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/Union/StreamApi.ts">
|
|
740
|
+
<metrics statements="10" coveredstatements="3" conditionals="0" coveredconditionals="0" methods="9" coveredmethods="2"/>
|
|
741
|
+
<line num="14" count="4" type="stmt"/>
|
|
742
|
+
<line num="16" count="1" type="stmt"/>
|
|
743
|
+
<line num="19" count="0" type="stmt"/>
|
|
744
|
+
<line num="22" count="1" type="stmt"/>
|
|
745
|
+
<line num="25" count="0" type="stmt"/>
|
|
746
|
+
<line num="28" count="0" type="stmt"/>
|
|
747
|
+
<line num="31" count="0" type="stmt"/>
|
|
748
|
+
<line num="34" count="0" type="stmt"/>
|
|
749
|
+
<line num="37" count="0" type="stmt"/>
|
|
750
|
+
<line num="40" count="0" type="stmt"/>
|
|
751
|
+
</file>
|
|
752
|
+
<file name="Subscription.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/Union/Subscription.ts">
|
|
753
|
+
<metrics statements="15" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="13" coveredmethods="0"/>
|
|
754
|
+
<line num="3" count="4" type="stmt"/>
|
|
755
|
+
<line num="5" count="4" type="stmt"/>
|
|
756
|
+
<line num="8" count="0" type="stmt"/>
|
|
757
|
+
<line num="11" count="0" type="stmt"/>
|
|
758
|
+
<line num="14" count="0" type="stmt"/>
|
|
759
|
+
<line num="17" count="0" type="stmt"/>
|
|
760
|
+
<line num="20" count="0" type="stmt"/>
|
|
761
|
+
<line num="23" count="0" type="stmt"/>
|
|
762
|
+
<line num="26" count="0" type="stmt"/>
|
|
763
|
+
<line num="29" count="0" type="stmt"/>
|
|
764
|
+
<line num="32" count="0" type="stmt"/>
|
|
765
|
+
<line num="35" count="0" type="stmt"/>
|
|
766
|
+
<line num="38" count="0" type="stmt"/>
|
|
767
|
+
<line num="41" count="0" type="stmt"/>
|
|
768
|
+
<line num="44" count="0" type="stmt"/>
|
|
769
|
+
</file>
|
|
770
|
+
<file name="index.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/Union/index.ts">
|
|
771
|
+
<metrics statements="1" coveredstatements="1" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>
|
|
772
|
+
<line num="1" count="4" type="stmt"/>
|
|
773
|
+
</file>
|
|
774
|
+
</package>
|
|
534
775
|
<package name="src.__tests__.fixtures.MathService">
|
|
535
776
|
<metrics statements="10" coveredstatements="10" conditionals="0" coveredconditionals="0" methods="6" coveredmethods="6"/>
|
|
536
777
|
<file name="MathHelperInstance.ts" path="/home/runner/work/nsc-toolkit/nsc-toolkit/src/__tests__/fixtures/MathService/MathHelperInstance.ts">
|