@nordicsemiconductor/pc-nrfconnect-shared 89.0.0 → 91.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (161) hide show
  1. package/Changelog.md +54 -0
  2. package/config/jest.config.js +0 -1
  3. package/config/tsconfig.json +1 -1
  4. package/coverage/cobertura-coverage.xml +2166 -1086
  5. package/ipc/MetaFiles.ts +26 -8
  6. package/nrfutil/device/__mocks__/device.ts +43 -0
  7. package/nrfutil/device/batch.ts +219 -0
  8. package/nrfutil/device/batchTypes.ts +133 -0
  9. package/nrfutil/device/common.ts +274 -0
  10. package/nrfutil/device/device.ts +62 -0
  11. package/nrfutil/device/erase.ts +26 -0
  12. package/nrfutil/device/eraseBatch.ts +28 -0
  13. package/nrfutil/device/firmwareRead.ts +34 -0
  14. package/nrfutil/device/firmwareReadBatch.ts +42 -0
  15. package/nrfutil/device/getCoreInfo.ts +44 -0
  16. package/nrfutil/device/getCoreInfoBatch.ts +29 -0
  17. package/nrfutil/device/getFwInfo.ts +69 -0
  18. package/nrfutil/device/getFwInfoBatch.ts +29 -0
  19. package/nrfutil/device/getProtectionStatus.ts +46 -0
  20. package/nrfutil/device/getProtectionStatusBatch.ts +32 -0
  21. package/nrfutil/device/list.ts +81 -0
  22. package/nrfutil/device/program.ts +186 -0
  23. package/nrfutil/device/programBatch.ts +69 -0
  24. package/nrfutil/device/recover.ts +26 -0
  25. package/nrfutil/device/recoverBatch.ts +28 -0
  26. package/nrfutil/device/reset.ts +41 -0
  27. package/nrfutil/device/resetBatch.ts +30 -0
  28. package/nrfutil/device/setMcuState.ts +27 -0
  29. package/nrfutil/device/setProtectionStatus.ts +27 -0
  30. package/nrfutil/index.ts +25 -0
  31. package/nrfutil/moduleVersion.ts +57 -0
  32. package/nrfutil/nrfutilLogger.ts +15 -0
  33. package/nrfutil/sandbox.ts +504 -0
  34. package/nrfutil/sandboxTypes.ts +178 -0
  35. package/package.json +1 -4
  36. package/scripts/check-app-properties.ts +49 -22
  37. package/scripts/esbuild-renderer.js +0 -1
  38. package/scripts/nordic-publish.js +6 -6
  39. package/scripts/nordic-publish.ts +11 -2
  40. package/src/About/SupportCard.tsx +6 -9
  41. package/src/App/App.test.tsx +4 -0
  42. package/src/App/App.tsx +13 -2
  43. package/src/Device/DeviceSelector/DeviceList/MoreDeviceInfo.tsx +1 -1
  44. package/src/Device/DeviceSelector/DeviceSelector.test.tsx +39 -31
  45. package/src/Device/DeviceSelector/DeviceSelector.tsx +3 -12
  46. package/src/Device/deviceInfo/deviceInfo.ts +2 -3
  47. package/src/Device/deviceLister.test.ts +1 -2
  48. package/src/Device/deviceLister.ts +169 -215
  49. package/src/Device/deviceSlice.ts +2 -16
  50. package/src/Device/jprogOperations.ts +21 -69
  51. package/src/Device/sdfuOperations.ts +77 -93
  52. package/src/ErrorBoundary/ErrorBoundary.tsx +1 -1
  53. package/src/Log/LogViewer.tsx +0 -4
  54. package/src/Log/logSlice.ts +4 -7
  55. package/src/index.ts +0 -1
  56. package/src/logging/sendInitialLogMessages.ts +7 -8
  57. package/src/utils/appDirs.ts +6 -11
  58. package/src/utils/logLibVersions.ts +12 -14
  59. package/src/utils/packageJson.ts +11 -1
  60. package/src/utils/systemReport.ts +11 -17
  61. package/src/utils/usageData.ts +14 -9
  62. package/tsconfig.json +1 -0
  63. package/typings/generated/ipc/MetaFiles.d.ts +21 -8
  64. package/typings/generated/ipc/MetaFiles.d.ts.map +1 -1
  65. package/typings/generated/nrfutil/device/__mocks__/device.d.ts +23 -0
  66. package/typings/generated/nrfutil/device/__mocks__/device.d.ts.map +1 -0
  67. package/typings/generated/nrfutil/device/batch.d.ts +26 -0
  68. package/typings/generated/nrfutil/device/batch.d.ts.map +1 -0
  69. package/typings/generated/nrfutil/device/batchTypes.d.ts +78 -0
  70. package/typings/generated/nrfutil/device/batchTypes.d.ts.map +1 -0
  71. package/typings/generated/nrfutil/device/common.d.ts +125 -0
  72. package/typings/generated/nrfutil/device/common.d.ts.map +1 -0
  73. package/typings/generated/nrfutil/device/device.d.ts +30 -0
  74. package/typings/generated/nrfutil/device/device.d.ts.map +1 -0
  75. package/typings/generated/nrfutil/device/erase.d.ts +5 -0
  76. package/typings/generated/nrfutil/device/erase.d.ts.map +1 -0
  77. package/typings/generated/nrfutil/device/eraseBatch.d.ts +7 -0
  78. package/typings/generated/nrfutil/device/eraseBatch.d.ts.map +1 -0
  79. package/typings/generated/nrfutil/device/firmwareRead.d.ts +10 -0
  80. package/typings/generated/nrfutil/device/firmwareRead.d.ts.map +1 -0
  81. package/typings/generated/nrfutil/device/firmwareReadBatch.d.ts +9 -0
  82. package/typings/generated/nrfutil/device/firmwareReadBatch.d.ts.map +1 -0
  83. package/typings/generated/nrfutil/device/getCoreInfo.d.ts +22 -0
  84. package/typings/generated/nrfutil/device/getCoreInfo.d.ts.map +1 -0
  85. package/typings/generated/nrfutil/device/getCoreInfoBatch.d.ts +8 -0
  86. package/typings/generated/nrfutil/device/getCoreInfoBatch.d.ts.map +1 -0
  87. package/typings/generated/nrfutil/device/getFwInfo.d.ts +31 -0
  88. package/typings/generated/nrfutil/device/getFwInfo.d.ts.map +1 -0
  89. package/typings/generated/nrfutil/device/getFwInfoBatch.d.ts +8 -0
  90. package/typings/generated/nrfutil/device/getFwInfoBatch.d.ts.map +1 -0
  91. package/typings/generated/nrfutil/device/getProtectionStatus.d.ts +13 -0
  92. package/typings/generated/nrfutil/device/getProtectionStatus.d.ts.map +1 -0
  93. package/typings/generated/nrfutil/device/getProtectionStatusBatch.d.ts +8 -0
  94. package/typings/generated/nrfutil/device/getProtectionStatusBatch.d.ts.map +1 -0
  95. package/typings/generated/nrfutil/device/list.d.ts +19 -0
  96. package/typings/generated/nrfutil/device/list.d.ts.map +1 -0
  97. package/typings/generated/nrfutil/device/program.d.ts +27 -0
  98. package/typings/generated/nrfutil/device/program.d.ts.map +1 -0
  99. package/typings/generated/nrfutil/device/programBatch.d.ts +9 -0
  100. package/typings/generated/nrfutil/device/programBatch.d.ts.map +1 -0
  101. package/typings/generated/nrfutil/device/recover.d.ts +5 -0
  102. package/typings/generated/nrfutil/device/recover.d.ts.map +1 -0
  103. package/typings/generated/nrfutil/device/recoverBatch.d.ts +7 -0
  104. package/typings/generated/nrfutil/device/recoverBatch.d.ts.map +1 -0
  105. package/typings/generated/nrfutil/device/reset.d.ts +5 -0
  106. package/typings/generated/nrfutil/device/reset.d.ts.map +1 -0
  107. package/typings/generated/nrfutil/device/resetBatch.d.ts +8 -0
  108. package/typings/generated/nrfutil/device/resetBatch.d.ts.map +1 -0
  109. package/typings/generated/nrfutil/device/setMcuState.d.ts +6 -0
  110. package/typings/generated/nrfutil/device/setMcuState.d.ts.map +1 -0
  111. package/typings/generated/nrfutil/device/setProtectionStatus.d.ts +5 -0
  112. package/typings/generated/nrfutil/device/setProtectionStatus.d.ts.map +1 -0
  113. package/typings/generated/nrfutil/index.d.ts +11 -0
  114. package/typings/generated/nrfutil/index.d.ts.map +1 -0
  115. package/typings/generated/nrfutil/moduleVersion.d.ts +6 -0
  116. package/typings/generated/nrfutil/moduleVersion.d.ts.map +1 -0
  117. package/typings/generated/nrfutil/nrfutilLogger.d.ts +4 -0
  118. package/typings/generated/nrfutil/nrfutilLogger.d.ts.map +1 -0
  119. package/typings/generated/nrfutil/sandbox.d.ts +36 -0
  120. package/typings/generated/nrfutil/sandbox.d.ts.map +1 -0
  121. package/typings/generated/nrfutil/sandboxTypes.d.ts +135 -0
  122. package/typings/generated/nrfutil/sandboxTypes.d.ts.map +1 -0
  123. package/typings/generated/src/About/SupportCard.d.ts.map +1 -1
  124. package/typings/generated/src/App/App.d.ts.map +1 -1
  125. package/typings/generated/src/Device/DeviceSelector/DeviceSelector.d.ts +2 -6
  126. package/typings/generated/src/Device/DeviceSelector/DeviceSelector.d.ts.map +1 -1
  127. package/typings/generated/src/Device/deviceInfo/deviceInfo.d.ts +2 -2
  128. package/typings/generated/src/Device/deviceInfo/deviceInfo.d.ts.map +1 -1
  129. package/typings/generated/src/Device/deviceLister.d.ts +11 -16
  130. package/typings/generated/src/Device/deviceLister.d.ts.map +1 -1
  131. package/typings/generated/src/Device/deviceLister.test.d.ts.map +1 -1
  132. package/typings/generated/src/Device/deviceSlice.d.ts +3 -3
  133. package/typings/generated/src/Device/deviceSlice.d.ts.map +1 -1
  134. package/typings/generated/src/Device/jprogOperations.d.ts.map +1 -1
  135. package/typings/generated/src/Device/sdfuOperations.d.ts.map +1 -1
  136. package/typings/generated/src/ErrorBoundary/ErrorBoundary.d.ts +1 -1
  137. package/typings/generated/src/ErrorBoundary/ErrorBoundary.d.ts.map +1 -1
  138. package/typings/generated/src/Log/LogViewer.d.ts.map +1 -1
  139. package/typings/generated/src/Log/logSlice.d.ts +2 -3
  140. package/typings/generated/src/Log/logSlice.d.ts.map +1 -1
  141. package/typings/generated/src/index.d.ts +0 -1
  142. package/typings/generated/src/index.d.ts.map +1 -1
  143. package/typings/generated/src/logging/sendInitialLogMessages.d.ts.map +1 -1
  144. package/typings/generated/src/utils/appDirs.d.ts +4 -4
  145. package/typings/generated/src/utils/appDirs.d.ts.map +1 -1
  146. package/typings/generated/src/utils/logLibVersions.d.ts.map +1 -1
  147. package/typings/generated/src/utils/packageJson.d.ts.map +1 -1
  148. package/typings/generated/src/utils/systemReport.d.ts +1 -1
  149. package/typings/generated/src/utils/systemReport.d.ts.map +1 -1
  150. package/typings/generated/src/utils/usageData.d.ts +2 -0
  151. package/typings/generated/src/utils/usageData.d.ts.map +1 -1
  152. package/mocks/deviceLibMock.ts +0 -21
  153. package/src/Device/deviceLibWrapper.test.ts +0 -97
  154. package/src/Device/deviceLibWrapper.ts +0 -132
  155. package/src/utils/describeVersion.ts +0 -21
  156. package/typings/generated/src/Device/deviceLibWrapper.d.ts +0 -9
  157. package/typings/generated/src/Device/deviceLibWrapper.d.ts.map +0 -1
  158. package/typings/generated/src/Device/deviceLibWrapper.test.d.ts +0 -2
  159. package/typings/generated/src/Device/deviceLibWrapper.test.d.ts.map +0 -1
  160. package/typings/generated/src/utils/describeVersion.d.ts +0 -4
  161. package/typings/generated/src/utils/describeVersion.d.ts.map +0 -1
@@ -1,6 +1,6 @@
1
1
  <?xml version="1.0" ?>
2
2
  <!DOCTYPE coverage SYSTEM "http://cobertura.sourceforge.net/xml/coverage-04.dtd">
3
- <coverage lines-valid="2531" lines-covered="1575" line-rate="0.6222" branches-valid="1088" branches-covered="392" branch-rate="0.3602" timestamp="1692276029589" complexity="0" version="0.1">
3
+ <coverage lines-valid="2964" lines-covered="1644" line-rate="0.5546" branches-valid="1446" branches-covered="381" branch-rate="0.2634" timestamp="1692780987528" complexity="0" version="0.1">
4
4
  <sources>
5
5
  <source>/home/vsts/work/1/s</source>
6
6
  </sources>
@@ -299,101 +299,1355 @@
299
299
  </class>
300
300
  </classes>
301
301
  </package>
302
- <package name="mocks" line-rate="0.9129999999999999" branch-rate="1">
302
+ <package name="mocks" line-rate="0.875" branch-rate="1">
303
303
  <classes>
304
- <class name="deviceLibMock.ts" filename="mocks/deviceLibMock.ts" line-rate="1" branch-rate="1">
304
+ <class name="electronMock.ts" filename="mocks/electronMock.ts" line-rate="1" branch-rate="1">
305
+ <methods>
306
+ </methods>
307
+ <lines>
308
+ <line number="9" hits="12" branch="false"/>
309
+ <line number="10" hits="12" branch="false"/>
310
+ <line number="11" hits="12" branch="false"/>
311
+ <line number="12" hits="33" branch="false"/>
312
+ </lines>
313
+ </class>
314
+ <class name="electronStoreMock.ts" filename="mocks/electronStoreMock.ts" line-rate="1" branch-rate="1">
315
+ <methods>
316
+ <method name="(anonymous_1)" hits="15" signature="()V">
317
+ <lines>
318
+ <line number="9" hits="15"/>
319
+ </lines>
320
+ </method>
321
+ <method name="(anonymous_2)" hits="43" signature="()V">
322
+ <lines>
323
+ <line number="13" hits="43"/>
324
+ </lines>
325
+ </method>
326
+ </methods>
327
+ <lines>
328
+ <line number="9" hits="15" branch="false"/>
329
+ <line number="10" hits="15" branch="false"/>
330
+ <line number="11" hits="15" branch="false"/>
331
+ <line number="14" hits="43" branch="true" condition-coverage="100% (4/4)"/>
332
+ </lines>
333
+ </class>
334
+ <class name="emptyMock.ts" filename="mocks/emptyMock.ts" line-rate="1" branch-rate="1">
335
+ <methods>
336
+ </methods>
337
+ <lines>
338
+ <line number="7" hits="11" branch="false"/>
339
+ </lines>
340
+ </class>
341
+ <class name="fileMock.ts" filename="mocks/fileMock.ts" line-rate="1" branch-rate="1">
342
+ <methods>
343
+ </methods>
344
+ <lines>
345
+ <line number="13" hits="122" branch="false"/>
346
+ </lines>
347
+ </class>
348
+ <class name="packageJsonMock.ts" filename="mocks/packageJsonMock.ts" line-rate="1" branch-rate="1">
349
+ <methods>
350
+ <method name="(anonymous_1)" hits="26" signature="()V">
351
+ <lines>
352
+ <line number="7" hits="26"/>
353
+ </lines>
354
+ </method>
355
+ </methods>
356
+ <lines>
357
+ <line number="7" hits="26" branch="false"/>
358
+ </lines>
359
+ </class>
360
+ <class name="remoteMock.ts" filename="mocks/remoteMock.ts" line-rate="0.6" branch-rate="1">
361
+ <methods>
362
+ <method name="(anonymous_4)" hits="1" signature="()V">
363
+ <lines>
364
+ <line number="10" hits="1"/>
365
+ </lines>
366
+ </method>
367
+ <method name="(anonymous_5)" hits="0" signature="()V">
368
+ <lines>
369
+ <line number="13" hits="0"/>
370
+ </lines>
371
+ </method>
372
+ <method name="(anonymous_6)" hits="0" signature="()V">
373
+ <lines>
374
+ <line number="16" hits="0"/>
375
+ </lines>
376
+ </method>
377
+ </methods>
378
+ <lines>
379
+ <line number="9" hits="12" branch="false"/>
380
+ <line number="10" hits="12" branch="false"/>
381
+ <line number="13" hits="0" branch="false"/>
382
+ <line number="15" hits="12" branch="false"/>
383
+ <line number="16" hits="0" branch="false"/>
384
+ </lines>
385
+ </class>
386
+ </classes>
387
+ </package>
388
+ <package name="nrfutil" line-rate="0.08710000000000001" branch-rate="0">
389
+ <classes>
390
+ <class name="moduleVersion.ts" filename="nrfutil/moduleVersion.ts" line-rate="0.29410000000000003" branch-rate="0">
391
+ <methods>
392
+ <method name="(anonymous_3)" hits="0" signature="()V">
393
+ <lines>
394
+ <line number="15" hits="0"/>
395
+ </lines>
396
+ </method>
397
+ <method name="(anonymous_4)" hits="0" signature="()V">
398
+ <lines>
399
+ <line number="33" hits="0"/>
400
+ </lines>
401
+ </method>
402
+ <method name="(anonymous_5)" hits="0" signature="()V">
403
+ <lines>
404
+ <line number="34" hits="0"/>
405
+ </lines>
406
+ </method>
407
+ <method name="(anonymous_6)" hits="0" signature="()V">
408
+ <lines>
409
+ <line number="36" hits="0"/>
410
+ </lines>
411
+ </method>
412
+ <method name="(anonymous_8)" hits="0" signature="()V">
413
+ <lines>
414
+ <line number="46" hits="0"/>
415
+ </lines>
416
+ </method>
417
+ <method name="(anonymous_9)" hits="0" signature="()V">
418
+ <lines>
419
+ <line number="53" hits="0"/>
420
+ </lines>
421
+ </method>
422
+ </methods>
423
+ <lines>
424
+ <line number="13" hits="2" branch="false"/>
425
+ <line number="15" hits="2" branch="false"/>
426
+ <line number="16" hits="0" branch="true" condition-coverage="0% (0/1)"/>
427
+ <line number="17" hits="0" branch="false"/>
428
+ <line number="20" hits="0" branch="true" condition-coverage="0% (0/1)"/>
429
+ <line number="21" hits="0" branch="false"/>
430
+ <line number="24" hits="0" branch="true" condition-coverage="0% (0/3)"/>
431
+ <line number="25" hits="0" branch="false"/>
432
+ <line number="28" hits="0" branch="false"/>
433
+ <line number="33" hits="2" branch="false"/>
434
+ <line number="34" hits="0" branch="false"/>
435
+ <line number="36" hits="2" branch="false"/>
436
+ <line number="40" hits="0" branch="true" condition-coverage="0% (0/1)"/>
437
+ <line number="43" hits="0" branch="false"/>
438
+ <line number="46" hits="0" branch="false"/>
439
+ <line number="53" hits="2" branch="false"/>
440
+ <line number="57" hits="0" branch="true" condition-coverage="0% (0/4)"/>
441
+ </lines>
442
+ </class>
443
+ <class name="nrfutilLogger.ts" filename="nrfutil/nrfutilLogger.ts" line-rate="1" branch-rate="1">
444
+ <methods>
445
+ <method name="(anonymous_3)" hits="1" signature="()V">
446
+ <lines>
447
+ <line number="11" hits="1"/>
448
+ </lines>
449
+ </method>
450
+ <method name="(anonymous_4)" hits="0" signature="()V">
451
+ <lines>
452
+ <line number="15" hits="0"/>
453
+ </lines>
454
+ </method>
455
+ </methods>
456
+ <lines>
457
+ <line number="11" hits="3" branch="false"/>
458
+ <line number="12" hits="1" branch="false"/>
459
+ <line number="15" hits="3" branch="false"/>
460
+ </lines>
461
+ </class>
462
+ <class name="sandbox.ts" filename="nrfutil/sandbox.ts" line-rate="0.0572" branch-rate="0">
463
+ <methods>
464
+ <method name="(anonymous_5)" hits="0" signature="()V">
465
+ <lines>
466
+ <line number="27" hits="0"/>
467
+ </lines>
468
+ </method>
469
+ <method name="(anonymous_6)" hits="0" signature="()V">
470
+ <lines>
471
+ <line number="39" hits="0"/>
472
+ </lines>
473
+ </method>
474
+ <method name="(anonymous_7)" hits="0" signature="()V">
475
+ <lines>
476
+ <line number="62" hits="0"/>
477
+ </lines>
478
+ </method>
479
+ <method name="(anonymous_8)" hits="0" signature="()V">
480
+ <lines>
481
+ <line number="79" hits="0"/>
482
+ </lines>
483
+ </method>
484
+ <method name="(anonymous_9)" hits="0" signature="()V">
485
+ <lines>
486
+ <line number="113" hits="0"/>
487
+ </lines>
488
+ </method>
489
+ <method name="(anonymous_10)" hits="0" signature="()V">
490
+ <lines>
491
+ <line number="121" hits="0"/>
492
+ </lines>
493
+ </method>
494
+ <method name="(anonymous_11)" hits="0" signature="()V">
495
+ <lines>
496
+ <line number="123" hits="0"/>
497
+ </lines>
498
+ </method>
499
+ <method name="(anonymous_12)" hits="0" signature="()V">
500
+ <lines>
501
+ <line number="130" hits="0"/>
502
+ </lines>
503
+ </method>
504
+ <method name="(anonymous_13)" hits="0" signature="()V">
505
+ <lines>
506
+ <line number="142" hits="0"/>
507
+ </lines>
508
+ </method>
509
+ <method name="(anonymous_14)" hits="0" signature="()V">
510
+ <lines>
511
+ <line number="163" hits="0"/>
512
+ </lines>
513
+ </method>
514
+ <method name="(anonymous_15)" hits="0" signature="()V">
515
+ <lines>
516
+ <line number="188" hits="0"/>
517
+ </lines>
518
+ </method>
519
+ <method name="(anonymous_16)" hits="0" signature="()V">
520
+ <lines>
521
+ <line number="203" hits="0"/>
522
+ </lines>
523
+ </method>
524
+ <method name="(anonymous_17)" hits="0" signature="()V">
525
+ <lines>
526
+ <line number="207" hits="0"/>
527
+ </lines>
528
+ </method>
529
+ <method name="(anonymous_18)" hits="0" signature="()V">
530
+ <lines>
531
+ <line number="211" hits="0"/>
532
+ </lines>
533
+ </method>
534
+ <method name="(anonymous_19)" hits="0" signature="()V">
535
+ <lines>
536
+ <line number="214" hits="0"/>
537
+ </lines>
538
+ </method>
539
+ <method name="(anonymous_20)" hits="0" signature="()V">
540
+ <lines>
541
+ <line number="215" hits="0"/>
542
+ </lines>
543
+ </method>
544
+ <method name="(anonymous_21)" hits="0" signature="()V">
545
+ <lines>
546
+ <line number="220" hits="0"/>
547
+ </lines>
548
+ </method>
549
+ <method name="(anonymous_22)" hits="0" signature="()V">
550
+ <lines>
551
+ <line number="226" hits="0"/>
552
+ </lines>
553
+ </method>
554
+ <method name="(anonymous_23)" hits="0" signature="()V">
555
+ <lines>
556
+ <line number="230" hits="0"/>
557
+ </lines>
558
+ </method>
559
+ <method name="(anonymous_24)" hits="0" signature="()V">
560
+ <lines>
561
+ <line number="232" hits="0"/>
562
+ </lines>
563
+ </method>
564
+ <method name="(anonymous_25)" hits="0" signature="()V">
565
+ <lines>
566
+ <line number="242" hits="0"/>
567
+ </lines>
568
+ </method>
569
+ <method name="(anonymous_26)" hits="0" signature="()V">
570
+ <lines>
571
+ <line number="243" hits="0"/>
572
+ </lines>
573
+ </method>
574
+ <method name="(anonymous_27)" hits="0" signature="()V">
575
+ <lines>
576
+ <line number="259" hits="0"/>
577
+ </lines>
578
+ </method>
579
+ <method name="(anonymous_29)" hits="0" signature="()V">
580
+ <lines>
581
+ <line number="283" hits="0"/>
582
+ </lines>
583
+ </method>
584
+ <method name="(anonymous_30)" hits="0" signature="()V">
585
+ <lines>
586
+ <line number="300" hits="0"/>
587
+ </lines>
588
+ </method>
589
+ <method name="(anonymous_31)" hits="0" signature="()V">
590
+ <lines>
591
+ <line number="314" hits="0"/>
592
+ </lines>
593
+ </method>
594
+ <method name="(anonymous_32)" hits="0" signature="()V">
595
+ <lines>
596
+ <line number="326" hits="0"/>
597
+ </lines>
598
+ </method>
599
+ <method name="(anonymous_33)" hits="0" signature="()V">
600
+ <lines>
601
+ <line number="330" hits="0"/>
602
+ </lines>
603
+ </method>
604
+ <method name="(anonymous_34)" hits="0" signature="()V">
605
+ <lines>
606
+ <line number="349" hits="0"/>
607
+ </lines>
608
+ </method>
609
+ <method name="(anonymous_35)" hits="0" signature="()V">
610
+ <lines>
611
+ <line number="361" hits="0"/>
612
+ </lines>
613
+ </method>
614
+ <method name="(anonymous_36)" hits="0" signature="()V">
615
+ <lines>
616
+ <line number="369" hits="0"/>
617
+ </lines>
618
+ </method>
619
+ <method name="(anonymous_37)" hits="0" signature="()V">
620
+ <lines>
621
+ <line number="377" hits="0"/>
622
+ </lines>
623
+ </method>
624
+ <method name="(anonymous_38)" hits="0" signature="()V">
625
+ <lines>
626
+ <line number="384" hits="0"/>
627
+ </lines>
628
+ </method>
629
+ <method name="(anonymous_39)" hits="0" signature="()V">
630
+ <lines>
631
+ <line number="386" hits="0"/>
632
+ </lines>
633
+ </method>
634
+ <method name="(anonymous_40)" hits="0" signature="()V">
635
+ <lines>
636
+ <line number="388" hits="0"/>
637
+ </lines>
638
+ </method>
639
+ <method name="(anonymous_41)" hits="0" signature="()V">
640
+ <lines>
641
+ <line number="390" hits="0"/>
642
+ </lines>
643
+ </method>
644
+ <method name="(anonymous_42)" hits="0" signature="()V">
645
+ <lines>
646
+ <line number="394" hits="0"/>
647
+ </lines>
648
+ </method>
649
+ <method name="(anonymous_43)" hits="0" signature="()V">
650
+ <lines>
651
+ <line number="398" hits="0"/>
652
+ </lines>
653
+ </method>
654
+ <method name="(anonymous_44)" hits="0" signature="()V">
655
+ <lines>
656
+ <line number="399" hits="0"/>
657
+ </lines>
658
+ </method>
659
+ <method name="(anonymous_45)" hits="0" signature="()V">
660
+ <lines>
661
+ <line number="402" hits="0"/>
662
+ </lines>
663
+ </method>
664
+ <method name="(anonymous_46)" hits="0" signature="()V">
665
+ <lines>
666
+ <line number="408" hits="0"/>
667
+ </lines>
668
+ </method>
669
+ <method name="(anonymous_47)" hits="0" signature="()V">
670
+ <lines>
671
+ <line number="427" hits="0"/>
672
+ </lines>
673
+ </method>
674
+ <method name="(anonymous_48)" hits="0" signature="()V">
675
+ <lines>
676
+ <line number="448" hits="0"/>
677
+ </lines>
678
+ </method>
679
+ <method name="(anonymous_49)" hits="0" signature="()V">
680
+ <lines>
681
+ <line number="451" hits="0"/>
682
+ </lines>
683
+ </method>
684
+ <method name="(anonymous_50)" hits="0" signature="()V">
685
+ <lines>
686
+ <line number="458" hits="0"/>
687
+ </lines>
688
+ </method>
689
+ <method name="(anonymous_51)" hits="0" signature="()V">
690
+ <lines>
691
+ <line number="463" hits="0"/>
692
+ </lines>
693
+ </method>
694
+ </methods>
695
+ <lines>
696
+ <line number="7" hits="3" branch="false"/>
697
+ <line number="8" hits="3" branch="false"/>
698
+ <line number="9" hits="3" branch="false"/>
699
+ <line number="10" hits="3" branch="false"/>
700
+ <line number="12" hits="3" branch="false"/>
701
+ <line number="13" hits="3" branch="false"/>
702
+ <line number="14" hits="3" branch="false"/>
703
+ <line number="27" hits="3" branch="false"/>
704
+ <line number="28" hits="0" branch="false"/>
705
+ <line number="29" hits="0" branch="true" condition-coverage="0% (0/1)"/>
706
+ <line number="30" hits="0" branch="false"/>
707
+ <line number="32" hits="0" branch="false"/>
708
+ <line number="33" hits="0" branch="true" condition-coverage="0% (0/4)"/>
709
+ <line number="35" hits="0" branch="false"/>
710
+ <line number="39" hits="3" branch="false"/>
711
+ <line number="40" hits="0" branch="false"/>
712
+ <line number="41" hits="0" branch="false"/>
713
+ <line number="42" hits="0" branch="false"/>
714
+ <line number="44" hits="0" branch="false"/>
715
+ <line number="46" hits="0" branch="true" condition-coverage="0% (0/1)"/>
716
+ <line number="50" hits="0" branch="false"/>
717
+ <line number="51" hits="0" branch="false"/>
718
+ <line number="52" hits="0" branch="false"/>
719
+ <line number="53" hits="0" branch="false"/>
720
+ <line number="54" hits="0" branch="false"/>
721
+ <line number="55" hits="0" branch="false"/>
722
+ <line number="56" hits="0" branch="false"/>
723
+ <line number="59" hits="0" branch="false"/>
724
+ <line number="62" hits="3" branch="false"/>
725
+ <line number="73" hits="0" branch="false"/>
726
+ <line number="75" hits="0" branch="true" condition-coverage="0% (0/1)"/>
727
+ <line number="76" hits="0" branch="false"/>
728
+ <line number="79" hits="0" branch="false"/>
729
+ <line number="80" hits="0" branch="true" condition-coverage="0% (0/6)"/>
730
+ <line number="82" hits="0" branch="true" condition-coverage="0% (0/4)"/>
731
+ <line number="83" hits="0" branch="false"/>
732
+ <line number="85" hits="0" branch="true" condition-coverage="0% (0/4)"/>
733
+ <line number="86" hits="0" branch="false"/>
734
+ <line number="88" hits="0" branch="true" condition-coverage="0% (0/4)"/>
735
+ <line number="89" hits="0" branch="false"/>
736
+ <line number="91" hits="0" branch="true" condition-coverage="0% (0/4)"/>
737
+ <line number="92" hits="0" branch="false"/>
738
+ <line number="94" hits="0" branch="true" condition-coverage="0% (0/4)"/>
739
+ <line number="95" hits="0" branch="false"/>
740
+ <line number="97" hits="0" branch="false"/>
741
+ <line number="98" hits="0" branch="false"/>
742
+ <line number="102" hits="0" branch="false"/>
743
+ <line number="105" hits="0" branch="false"/>
744
+ <line number="106" hits="0" branch="false"/>
745
+ <line number="107" hits="0" branch="false"/>
746
+ <line number="108" hits="0" branch="false"/>
747
+ <line number="109" hits="0" branch="false"/>
748
+ <line number="110" hits="0" branch="false"/>
749
+ <line number="111" hits="0" branch="false"/>
750
+ <line number="114" hits="0" branch="false"/>
751
+ <line number="115" hits="0" branch="false"/>
752
+ <line number="116" hits="0" branch="false"/>
753
+ <line number="118" hits="0" branch="false"/>
754
+ <line number="121" hits="0" branch="false"/>
755
+ <line number="122" hits="0" branch="true" condition-coverage="0% (0/1)"/>
756
+ <line number="123" hits="0" branch="false"/>
757
+ <line number="124" hits="0" branch="false"/>
758
+ <line number="127" hits="0" branch="false"/>
759
+ <line number="130" hits="0" branch="false"/>
760
+ <line number="131" hits="0" branch="false"/>
761
+ <line number="135" hits="0" branch="true" condition-coverage="0% (0/1)"/>
762
+ <line number="136" hits="0" branch="false"/>
763
+ <line number="139" hits="0" branch="false"/>
764
+ <line number="142" hits="0" branch="false"/>
765
+ <line number="143" hits="0" branch="true" condition-coverage="0% (0/1)"/>
766
+ <line number="157" hits="0" branch="false"/>
767
+ <line number="158" hits="0" branch="false"/>
768
+ <line number="160" hits="0" branch="false"/>
769
+ <line number="163" hits="0" branch="false"/>
770
+ <line number="166" hits="0" branch="false"/>
771
+ <line number="167" hits="0" branch="true" condition-coverage="0% (0/4)"/>
772
+ <line number="170" hits="0" branch="false"/>
773
+ <line number="175" hits="0" branch="true" condition-coverage="0% (0/4)"/>
774
+ <line number="179" hits="0" branch="true" condition-coverage="0% (0/4)"/>
775
+ <line number="184" hits="0" branch="false"/>
776
+ <line number="188" hits="0" branch="false"/>
777
+ <line number="196" hits="0" branch="false"/>
778
+ <line number="197" hits="0" branch="false"/>
779
+ <line number="199" hits="0" branch="false"/>
780
+ <line number="200" hits="0" branch="false"/>
781
+ <line number="204" hits="0" branch="false"/>
782
+ <line number="208" hits="0" branch="false"/>
783
+ <line number="209" hits="0" branch="true" condition-coverage="0% (0/4)"/>
784
+ <line number="212" hits="0" branch="false"/>
785
+ <line number="215" hits="0" branch="false"/>
786
+ <line number="216" hits="0" branch="false"/>
787
+ <line number="221" hits="0" branch="false"/>
788
+ <line number="226" hits="0" branch="true" condition-coverage="0% (0/1)"/>
789
+ <line number="227" hits="0" branch="false"/>
790
+ <line number="229" hits="0" branch="false"/>
791
+ <line number="230" hits="0" branch="false"/>
792
+ <line number="233" hits="0" branch="true" condition-coverage="0% (0/8)"/>
793
+ <line number="236" hits="0" branch="true" condition-coverage="0% (0/4)"/>
794
+ <line number="238" hits="0" branch="false"/>
795
+ <line number="239" hits="0" branch="false"/>
796
+ <line number="241" hits="0" branch="false"/>
797
+ <line number="242" hits="0" branch="true" condition-coverage="0% (0/2)"/>
798
+ <line number="243" hits="0" branch="false"/>
799
+ <line number="246" hits="0" branch="true" condition-coverage="0% (0/1)"/>
800
+ <line number="247" hits="0" branch="false"/>
801
+ <line number="250" hits="0" branch="true" condition-coverage="0% (0/1)"/>
802
+ <line number="251" hits="0" branch="false"/>
803
+ <line number="254" hits="0" branch="false"/>
804
+ <line number="255" hits="0" branch="false"/>
805
+ <line number="259" hits="0" branch="false"/>
806
+ <line number="267" hits="0" branch="false"/>
807
+ <line number="283" hits="0" branch="false"/>
808
+ <line number="284" hits="0" branch="false"/>
809
+ <line number="285" hits="0" branch="false"/>
810
+ <line number="300" hits="0" branch="false"/>
811
+ <line number="301" hits="0" branch="true" condition-coverage="0% (0/4)"/>
812
+ <line number="306" hits="0" branch="false"/>
813
+ <line number="307" hits="0" branch="false"/>
814
+ <line number="310" hits="0" branch="true" condition-coverage="0% (0/4)"/>
815
+ <line number="312" hits="0" branch="false"/>
816
+ <line number="314" hits="0" branch="false"/>
817
+ <line number="315" hits="0" branch="true" condition-coverage="0% (0/5)"/>
818
+ <line number="317" hits="0" branch="false"/>
819
+ <line number="318" hits="0" branch="false"/>
820
+ <line number="319" hits="0" branch="true" condition-coverage="0% (0/2)"/>
821
+ <line number="320" hits="0" branch="false"/>
822
+ <line number="322" hits="0" branch="false"/>
823
+ <line number="326" hits="0" branch="false"/>
824
+ <line number="327" hits="0" branch="false"/>
825
+ <line number="330" hits="0" branch="false"/>
826
+ <line number="331" hits="0" branch="true" condition-coverage="0% (0/4)"/>
827
+ <line number="332" hits="0" branch="true" condition-coverage="0% (0/1)"/>
828
+ <line number="333" hits="0" branch="false"/>
829
+ <line number="338" hits="0" branch="false"/>
830
+ <line number="341" hits="0" branch="true" condition-coverage="0% (0/2)"/>
831
+ <line number="342" hits="0" branch="false"/>
832
+ <line number="344" hits="0" branch="false"/>
833
+ <line number="349" hits="0" branch="false"/>
834
+ <line number="354" hits="0" branch="false"/>
835
+ <line number="355" hits="0" branch="false"/>
836
+ <line number="356" hits="0" branch="false"/>
837
+ <line number="358" hits="0" branch="false"/>
838
+ <line number="363" hits="0" branch="false"/>
839
+ <line number="365" hits="0" branch="true" condition-coverage="0% (0/1)"/>
840
+ <line number="366" hits="0" branch="false"/>
841
+ <line number="369" hits="0" branch="false"/>
842
+ <line number="370" hits="0" branch="true" condition-coverage="0% (0/1)"/>
843
+ <line number="371" hits="0" branch="true" condition-coverage="0% (0/1)"/>
844
+ <line number="372" hits="0" branch="false"/>
845
+ <line number="378" hits="0" branch="false"/>
846
+ <line number="383" hits="0" branch="false"/>
847
+ <line number="385" hits="0" branch="false"/>
848
+ <line number="386" hits="0" branch="false"/>
849
+ <line number="389" hits="0" branch="false"/>
850
+ <line number="390" hits="0" branch="false"/>
851
+ <line number="393" hits="0" branch="false"/>
852
+ <line number="395" hits="0" branch="false"/>
853
+ <line number="396" hits="0" branch="false"/>
854
+ <line number="398" hits="0" branch="false"/>
855
+ <line number="400" hits="0" branch="false"/>
856
+ <line number="402" hits="0" branch="false"/>
857
+ <line number="403" hits="0" branch="false"/>
858
+ <line number="408" hits="0" branch="false"/>
859
+ <line number="414" hits="0" branch="false"/>
860
+ <line number="421" hits="0" branch="true" condition-coverage="0% (0/1)"/>
861
+ <line number="422" hits="0" branch="false"/>
862
+ <line number="424" hits="0" branch="false"/>
863
+ <line number="427" hits="0" branch="false"/>
864
+ <line number="433" hits="0" branch="false"/>
865
+ <line number="442" hits="0" branch="true" condition-coverage="0% (0/1)"/>
866
+ <line number="443" hits="0" branch="false"/>
867
+ <line number="445" hits="0" branch="false"/>
868
+ <line number="448" hits="0" branch="false"/>
869
+ <line number="449" hits="0" branch="false"/>
870
+ <line number="451" hits="0" branch="false"/>
871
+ <line number="452" hits="0" branch="false"/>
872
+ <line number="458" hits="0" branch="false"/>
873
+ <line number="459" hits="0" branch="false"/>
874
+ <line number="463" hits="3" branch="false"/>
875
+ <line number="469" hits="0" branch="false"/>
876
+ <line number="471" hits="0" branch="true" condition-coverage="0% (0/1)"/>
877
+ <line number="476" hits="0" branch="false"/>
878
+ <line number="481" hits="0" branch="true" condition-coverage="0% (0/2)"/>
879
+ <line number="485" hits="0" branch="true" condition-coverage="0% (0/4)"/>
880
+ <line number="486" hits="0" branch="false"/>
881
+ <line number="489" hits="0" branch="false"/>
882
+ <line number="495" hits="0" branch="true" condition-coverage="0% (0/4)"/>
883
+ <line number="496" hits="0" branch="false"/>
884
+ <line number="498" hits="0" branch="true" condition-coverage="0% (0/1)"/>
885
+ <line number="499" hits="0" branch="false"/>
886
+ <line number="502" hits="0" branch="true" condition-coverage="0% (0/4)"/>
887
+ <line number="503" hits="0" branch="false"/>
888
+ </lines>
889
+ </class>
890
+ <class name="sandboxTypes.ts" filename="nrfutil/sandboxTypes.ts" line-rate="0" branch-rate="0">
891
+ <methods>
892
+ </methods>
893
+ <lines>
894
+ <line number="165" hits="0" branch="false"/>
895
+ <line number="168" hits="0" branch="true" condition-coverage="0% (0/4)"/>
896
+ <line number="170" hits="0" branch="false"/>
897
+ <line number="173" hits="0" branch="true" condition-coverage="0% (0/4)"/>
898
+ <line number="175" hits="0" branch="false"/>
899
+ <line number="178" hits="0" branch="true" condition-coverage="0% (0/4)"/>
900
+ </lines>
901
+ </class>
902
+ </classes>
903
+ </package>
904
+ <package name="nrfutil.device" line-rate="0.2876" branch-rate="0">
905
+ <classes>
906
+ <class name="batch.ts" filename="nrfutil/device/batch.ts" line-rate="0.1525" branch-rate="0">
907
+ <methods>
908
+ <method name="(anonymous_3)" hits="0" signature="()V">
909
+ <lines>
910
+ <line number="43" hits="0"/>
911
+ </lines>
912
+ </method>
913
+ <method name="(anonymous_4)" hits="0" signature="()V">
914
+ <lines>
915
+ <line number="51" hits="0"/>
916
+ </lines>
917
+ </method>
918
+ <method name="(anonymous_5)" hits="0" signature="()V">
919
+ <lines>
920
+ <line number="61" hits="0"/>
921
+ </lines>
922
+ </method>
923
+ <method name="(anonymous_6)" hits="0" signature="()V">
924
+ <lines>
925
+ <line number="74" hits="0"/>
926
+ </lines>
927
+ </method>
928
+ <method name="(anonymous_7)" hits="0" signature="()V">
929
+ <lines>
930
+ <line number="84" hits="0"/>
931
+ </lines>
932
+ </method>
933
+ <method name="(anonymous_8)" hits="0" signature="()V">
934
+ <lines>
935
+ <line number="97" hits="0"/>
936
+ </lines>
937
+ </method>
938
+ <method name="(anonymous_9)" hits="0" signature="()V">
939
+ <lines>
940
+ <line number="113" hits="0"/>
941
+ </lines>
942
+ </method>
943
+ <method name="(anonymous_10)" hits="0" signature="()V">
944
+ <lines>
945
+ <line number="121" hits="0"/>
946
+ </lines>
947
+ </method>
948
+ <method name="(anonymous_11)" hits="0" signature="()V">
949
+ <lines>
950
+ <line number="132" hits="0"/>
951
+ </lines>
952
+ </method>
953
+ <method name="(anonymous_12)" hits="0" signature="()V">
954
+ <lines>
955
+ <line number="145" hits="0"/>
956
+ </lines>
957
+ </method>
958
+ <method name="(anonymous_13)" hits="0" signature="()V">
959
+ <lines>
960
+ <line number="154" hits="0"/>
961
+ </lines>
962
+ </method>
963
+ <method name="(anonymous_14)" hits="0" signature="()V">
964
+ <lines>
965
+ <line number="170" hits="0"/>
966
+ </lines>
967
+ </method>
968
+ <method name="(anonymous_15)" hits="0" signature="()V">
969
+ <lines>
970
+ <line number="175" hits="0"/>
971
+ </lines>
972
+ </method>
973
+ <method name="(anonymous_16)" hits="0" signature="()V">
974
+ <lines>
975
+ <line number="179" hits="0"/>
976
+ </lines>
977
+ </method>
978
+ <method name="(anonymous_17)" hits="0" signature="()V">
979
+ <lines>
980
+ <line number="185" hits="0"/>
981
+ </lines>
982
+ </method>
983
+ <method name="(anonymous_18)" hits="0" signature="()V">
984
+ <lines>
985
+ <line number="186" hits="0"/>
986
+ </lines>
987
+ </method>
988
+ <method name="(anonymous_19)" hits="0" signature="()V">
989
+ <lines>
990
+ <line number="200" hits="0"/>
991
+ </lines>
992
+ </method>
993
+ <method name="(anonymous_20)" hits="0" signature="()V">
994
+ <lines>
995
+ <line number="204" hits="0"/>
996
+ </lines>
997
+ </method>
998
+ <method name="(anonymous_21)" hits="0" signature="()V">
999
+ <lines>
1000
+ <line number="217" hits="0"/>
1001
+ </lines>
1002
+ </method>
1003
+ <method name="(anonymous_22)" hits="0" signature="()V">
1004
+ <lines>
1005
+ <line number="39" hits="0"/>
1006
+ </lines>
1007
+ </method>
1008
+ </methods>
1009
+ <lines>
1010
+ <line number="14" hits="3" branch="false"/>
1011
+ <line number="15" hits="3" branch="false"/>
1012
+ <line number="16" hits="3" branch="false"/>
1013
+ <line number="18" hits="3" branch="false"/>
1014
+ <line number="20" hits="3" branch="false"/>
1015
+ <line number="22" hits="3" branch="false"/>
1016
+ <line number="24" hits="3" branch="false"/>
1017
+ <line number="25" hits="3" branch="false"/>
1018
+ <line number="26" hits="3" branch="false"/>
1019
+ <line number="30" hits="0" branch="false"/>
1020
+ <line number="31" hits="0" branch="false"/>
1021
+ <line number="33" hits="0" branch="false"/>
1022
+ <line number="40" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1023
+ <line number="44" hits="0" branch="false"/>
1024
+ <line number="48" hits="0" branch="false"/>
1025
+ <line number="52" hits="0" branch="false"/>
1026
+ <line number="58" hits="0" branch="false"/>
1027
+ <line number="65" hits="0" branch="false"/>
1028
+ <line number="71" hits="0" branch="false"/>
1029
+ <line number="75" hits="0" branch="false"/>
1030
+ <line number="81" hits="0" branch="false"/>
1031
+ <line number="88" hits="0" branch="false"/>
1032
+ <line number="94" hits="0" branch="false"/>
1033
+ <line number="103" hits="0" branch="false"/>
1034
+ <line number="110" hits="0" branch="false"/>
1035
+ <line number="114" hits="0" branch="false"/>
1036
+ <line number="118" hits="0" branch="false"/>
1037
+ <line number="122" hits="0" branch="false"/>
1038
+ <line number="129" hits="0" branch="false"/>
1039
+ <line number="136" hits="0" branch="false"/>
1040
+ <line number="142" hits="0" branch="false"/>
1041
+ <line number="149" hits="0" branch="false"/>
1042
+ <line number="150" hits="0" branch="false"/>
1043
+ <line number="151" hits="0" branch="false"/>
1044
+ <line number="153" hits="0" branch="false"/>
1045
+ <line number="154" hits="0" branch="false"/>
1046
+ <line number="160" hits="0" branch="false"/>
1047
+ <line number="161" hits="0" branch="false"/>
1048
+ <line number="162" hits="0" branch="false"/>
1049
+ <line number="171" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1050
+ <line number="172" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1051
+ <line number="176" hits="0" branch="false"/>
1052
+ <line number="177" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1053
+ <line number="180" hits="0" branch="false"/>
1054
+ <line number="182" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1055
+ <line number="184" hits="0" branch="false"/>
1056
+ <line number="185" hits="0" branch="false"/>
1057
+ <line number="187" hits="0" branch="false"/>
1058
+ <line number="195" hits="0" branch="false"/>
1059
+ <line number="200" hits="0" branch="false"/>
1060
+ <line number="201" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1061
+ <line number="202" hits="0" branch="false"/>
1062
+ <line number="204" hits="0" branch="false"/>
1063
+ <line number="207" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1064
+ <line number="208" hits="0" branch="false"/>
1065
+ <line number="211" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1066
+ <line number="212" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1067
+ <line number="214" hits="0" branch="false"/>
1068
+ <line number="217" hits="0" branch="false"/>
1069
+ </lines>
1070
+ </class>
1071
+ <class name="batchTypes.ts" filename="nrfutil/device/batchTypes.ts" line-rate="0.2" branch-rate="0">
1072
+ <methods>
1073
+ <method name="(anonymous_3)" hits="0" signature="()V">
1074
+ <lines>
1075
+ <line number="36" hits="0"/>
1076
+ </lines>
1077
+ </method>
1078
+ <method name="(anonymous_4)" hits="0" signature="()V">
1079
+ <lines>
1080
+ <line number="47" hits="0"/>
1081
+ </lines>
1082
+ </method>
1083
+ </methods>
1084
+ <lines>
1085
+ <line number="14" hits="3" branch="false"/>
1086
+ <line number="36" hits="3" branch="false"/>
1087
+ <line number="37" hits="0" branch="true" condition-coverage="0% (0/3)"/>
1088
+ <line number="39" hits="0" branch="false"/>
1089
+ <line number="41" hits="0" branch="false"/>
1090
+ <line number="43" hits="0" branch="false"/>
1091
+ <line number="47" hits="3" branch="false"/>
1092
+ <line number="50" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1093
+ <line number="51" hits="0" branch="false"/>
1094
+ <line number="54" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1095
+ <line number="55" hits="0" branch="false"/>
1096
+ <line number="62" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1097
+ <line number="63" hits="0" branch="false"/>
1098
+ <line number="69" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1099
+ <line number="70" hits="0" branch="false"/>
1100
+ </lines>
1101
+ </class>
1102
+ <class name="common.ts" filename="nrfutil/device/common.ts" line-rate="0.1777" branch-rate="0">
1103
+ <methods>
1104
+ <method name="(anonymous_6)" hits="0" signature="()V">
1105
+ <lines>
1106
+ <line number="16" hits="0"/>
1107
+ </lines>
1108
+ </method>
1109
+ <method name="(anonymous_7)" hits="0" signature="()V">
1110
+ <lines>
1111
+ <line number="19" hits="0"/>
1112
+ </lines>
1113
+ </method>
1114
+ <method name="(anonymous_8)" hits="0" signature="()V">
1115
+ <lines>
1116
+ <line number="20" hits="0"/>
1117
+ </lines>
1118
+ </method>
1119
+ <method name="(anonymous_9)" hits="0" signature="()V">
1120
+ <lines>
1121
+ <line number="193" hits="0"/>
1122
+ </lines>
1123
+ </method>
1124
+ <method name="(anonymous_10)" hits="0" signature="()V">
1125
+ <lines>
1126
+ <line number="207" hits="0"/>
1127
+ </lines>
1128
+ </method>
1129
+ <method name="(anonymous_11)" hits="0" signature="()V">
1130
+ <lines>
1131
+ <line number="244" hits="0"/>
1132
+ </lines>
1133
+ </method>
1134
+ <method name="(anonymous_12)" hits="0" signature="()V">
1135
+ <lines>
1136
+ <line number="260" hits="0"/>
1137
+ </lines>
1138
+ </method>
1139
+ </methods>
1140
+ <lines>
1141
+ <line number="7" hits="3" branch="false"/>
1142
+ <line number="11" hits="3" branch="false"/>
1143
+ <line number="12" hits="3" branch="false"/>
1144
+ <line number="13" hits="3" branch="false"/>
1145
+ <line number="16" hits="3" branch="false"/>
1146
+ <line number="17" hits="0" branch="false"/>
1147
+ <line number="18" hits="0" branch="false"/>
1148
+ <line number="19" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1149
+ <line number="20" hits="0" branch="false"/>
1150
+ <line number="23" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1151
+ <line number="24" hits="0" branch="false"/>
1152
+ <line number="25" hits="0" branch="false"/>
1153
+ <line number="28" hits="0" branch="false"/>
1154
+ <line number="193" hits="3" branch="false"/>
1155
+ <line number="194" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1156
+ <line number="195" hits="0" branch="false"/>
1157
+ <line number="198" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1158
+ <line number="199" hits="0" branch="false"/>
1159
+ <line number="205" hits="0" branch="false"/>
1160
+ <line number="207" hits="0" branch="false"/>
1161
+ <line number="208" hits="0" branch="false"/>
1162
+ <line number="209" hits="0" branch="true" condition-coverage="0% (0/8)"/>
1163
+ <line number="211" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1164
+ <line number="212" hits="0" branch="false"/>
1165
+ <line number="214" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1166
+ <line number="215" hits="0" branch="false"/>
1167
+ <line number="217" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1168
+ <line number="218" hits="0" branch="false"/>
1169
+ <line number="220" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1170
+ <line number="221" hits="0" branch="false"/>
1171
+ <line number="223" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1172
+ <line number="224" hits="0" branch="false"/>
1173
+ <line number="226" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1174
+ <line number="227" hits="0" branch="false"/>
1175
+ <line number="231" hits="0" branch="false"/>
1176
+ <line number="235" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1177
+ <line number="237" hits="0" branch="false"/>
1178
+ <line number="240" hits="0" branch="false"/>
1179
+ <line number="241" hits="0" branch="false"/>
1180
+ <line number="244" hits="3" branch="false"/>
1181
+ <line number="251" hits="0" branch="false"/>
1182
+ <line number="252" hits="0" branch="false"/>
1183
+ <line number="260" hits="3" branch="false"/>
1184
+ <line number="267" hits="0" branch="false"/>
1185
+ <line number="268" hits="0" branch="false"/>
1186
+ </lines>
1187
+ </class>
1188
+ <class name="device.ts" filename="nrfutil/device/device.ts" line-rate="0.6206" branch-rate="0">
1189
+ <methods>
1190
+ <method name="(anonymous_2)" hits="0" signature="()V">
1191
+ <lines>
1192
+ <line number="22" hits="0"/>
1193
+ </lines>
1194
+ </method>
1195
+ <method name="(anonymous_3)" hits="0" signature="()V">
1196
+ <lines>
1197
+ <line number="27" hits="0"/>
1198
+ </lines>
1199
+ </method>
1200
+ <method name="(anonymous_4)" hits="0" signature="()V">
1201
+ <lines>
1202
+ <line number="32" hits="0"/>
1203
+ </lines>
1204
+ </method>
1205
+ <method name="(anonymous_5)" hits="0" signature="()V">
1206
+ <lines>
1207
+ <line number="40" hits="0"/>
1208
+ </lines>
1209
+ </method>
1210
+ <method name="(anonymous_6)" hits="0" signature="()V">
1211
+ <lines>
1212
+ <line number="61" hits="0"/>
1213
+ </lines>
1214
+ </method>
1215
+ </methods>
1216
+ <lines>
1217
+ <line number="8" hits="3" branch="false"/>
1218
+ <line number="9" hits="3" branch="false"/>
1219
+ <line number="10" hits="3" branch="false"/>
1220
+ <line number="11" hits="3" branch="false"/>
1221
+ <line number="12" hits="3" branch="false"/>
1222
+ <line number="13" hits="3" branch="false"/>
1223
+ <line number="14" hits="3" branch="false"/>
1224
+ <line number="15" hits="3" branch="false"/>
1225
+ <line number="16" hits="3" branch="false"/>
1226
+ <line number="17" hits="3" branch="false"/>
1227
+ <line number="18" hits="3" branch="false"/>
1228
+ <line number="19" hits="3" branch="false"/>
1229
+ <line number="20" hits="3" branch="false"/>
1230
+ <line number="22" hits="3" branch="false"/>
1231
+ <line number="23" hits="0" branch="false"/>
1232
+ <line number="24" hits="0" branch="false"/>
1233
+ <line number="27" hits="3" branch="false"/>
1234
+ <line number="28" hits="0" branch="false"/>
1235
+ <line number="29" hits="0" branch="false"/>
1236
+ <line number="32" hits="3" branch="false"/>
1237
+ <line number="33" hits="0" branch="false"/>
1238
+ <line number="34" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1239
+ <line number="35" hits="0" branch="false"/>
1240
+ <line number="37" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1241
+ <line number="40" hits="3" branch="false"/>
1242
+ <line number="41" hits="0" branch="false"/>
1243
+ <line number="42" hits="0" branch="false"/>
1244
+ <line number="45" hits="3" branch="false"/>
1245
+ <line number="61" hits="0" branch="false"/>
1246
+ </lines>
1247
+ </class>
1248
+ <class name="erase.ts" filename="nrfutil/device/erase.ts" line-rate="0.6666" branch-rate="0">
1249
+ <methods>
1250
+ <method name="(anonymous_1)" hits="0" signature="()V">
1251
+ <lines>
1252
+ <line number="14" hits="0"/>
1253
+ </lines>
1254
+ </method>
1255
+ </methods>
1256
+ <lines>
1257
+ <line number="12" hits="3" branch="false"/>
1258
+ <line number="14" hits="3" branch="false"/>
1259
+ <line number="20" hits="0" branch="false"/>
1260
+ </lines>
1261
+ </class>
1262
+ <class name="eraseBatch.ts" filename="nrfutil/device/eraseBatch.ts" line-rate="0.3333" branch-rate="0">
1263
+ <methods>
1264
+ </methods>
1265
+ <lines>
1266
+ <line number="12" hits="3" branch="false"/>
1267
+ <line number="15" hits="0" branch="false"/>
1268
+ <line number="20" hits="0" branch="false"/>
1269
+ </lines>
1270
+ </class>
1271
+ <class name="firmwareRead.ts" filename="nrfutil/device/firmwareRead.ts" line-rate="0.5" branch-rate="0">
1272
+ <methods>
1273
+ <method name="(anonymous_1)" hits="0" signature="()V">
1274
+ <lines>
1275
+ <line number="19" hits="0"/>
1276
+ </lines>
1277
+ </method>
1278
+ </methods>
1279
+ <lines>
1280
+ <line number="12" hits="3" branch="false"/>
1281
+ <line number="19" hits="3" branch="false"/>
1282
+ <line number="25" hits="0" branch="false"/>
1283
+ <line number="33" hits="0" branch="false"/>
1284
+ </lines>
1285
+ </class>
1286
+ <class name="firmwareReadBatch.ts" filename="nrfutil/device/firmwareReadBatch.ts" line-rate="0.1666" branch-rate="0">
1287
+ <methods>
1288
+ <method name="(anonymous_2)" hits="0" signature="()V">
1289
+ <lines>
1290
+ <line number="32" hits="0"/>
1291
+ </lines>
1292
+ </method>
1293
+ </methods>
1294
+ <lines>
1295
+ <line number="12" hits="3" branch="false"/>
1296
+ <line number="16" hits="0" branch="false"/>
1297
+ <line number="21" hits="0" branch="false"/>
1298
+ <line number="33" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1299
+ <line number="34" hits="0" branch="true" condition-coverage="0% (0/8)"/>
1300
+ <line number="39" hits="0" branch="true" condition-coverage="0% (0/8)"/>
1301
+ </lines>
1302
+ </class>
1303
+ <class name="getCoreInfo.ts" filename="nrfutil/device/getCoreInfo.ts" line-rate="0.6666" branch-rate="0">
1304
+ <methods>
1305
+ <method name="(anonymous_1)" hits="0" signature="()V">
1306
+ <lines>
1307
+ <line number="32" hits="0"/>
1308
+ </lines>
1309
+ </method>
1310
+ </methods>
1311
+ <lines>
1312
+ <line number="12" hits="3" branch="false"/>
1313
+ <line number="32" hits="3" branch="false"/>
1314
+ <line number="38" hits="0" branch="false"/>
1315
+ </lines>
1316
+ </class>
1317
+ <class name="getCoreInfoBatch.ts" filename="nrfutil/device/getCoreInfoBatch.ts" line-rate="0.3333" branch-rate="0">
1318
+ <methods>
1319
+ </methods>
1320
+ <lines>
1321
+ <line number="12" hits="3" branch="false"/>
1322
+ <line number="16" hits="0" branch="false"/>
1323
+ <line number="21" hits="0" branch="false"/>
1324
+ </lines>
1325
+ </class>
1326
+ <class name="getFwInfo.ts" filename="nrfutil/device/getFwInfo.ts" line-rate="0.6666" branch-rate="0">
1327
+ <methods>
1328
+ <method name="(anonymous_1)" hits="0" signature="()V">
1329
+ <lines>
1330
+ <line number="57" hits="0"/>
1331
+ </lines>
1332
+ </method>
1333
+ </methods>
1334
+ <lines>
1335
+ <line number="12" hits="3" branch="false"/>
1336
+ <line number="57" hits="3" branch="false"/>
1337
+ <line number="63" hits="0" branch="false"/>
1338
+ </lines>
1339
+ </class>
1340
+ <class name="getFwInfoBatch.ts" filename="nrfutil/device/getFwInfoBatch.ts" line-rate="0.3333" branch-rate="0">
305
1341
  <methods>
306
1342
  </methods>
307
1343
  <lines>
308
- <line number="7" hits="5" branch="false"/>
309
- <line number="8" hits="5" branch="false"/>
310
- <line number="9" hits="5" branch="false"/>
311
- <line number="10" hits="5" branch="false"/>
312
- <line number="11" hits="5" branch="false"/>
313
- <line number="12" hits="5" branch="false"/>
314
- <line number="14" hits="11" branch="false"/>
1344
+ <line number="12" hits="3" branch="false"/>
1345
+ <line number="16" hits="0" branch="false"/>
1346
+ <line number="21" hits="0" branch="false"/>
315
1347
  </lines>
316
1348
  </class>
317
- <class name="electronMock.ts" filename="mocks/electronMock.ts" line-rate="1" branch-rate="1">
1349
+ <class name="getProtectionStatus.ts" filename="nrfutil/device/getProtectionStatus.ts" line-rate="0.6666" branch-rate="0">
318
1350
  <methods>
1351
+ <method name="(anonymous_1)" hits="0" signature="()V">
1352
+ <lines>
1353
+ <line number="34" hits="0"/>
1354
+ </lines>
1355
+ </method>
319
1356
  </methods>
320
1357
  <lines>
321
- <line number="9" hits="13" branch="false"/>
322
- <line number="10" hits="13" branch="false"/>
323
- <line number="11" hits="13" branch="false"/>
324
- <line number="12" hits="33" branch="false"/>
1358
+ <line number="12" hits="3" branch="false"/>
1359
+ <line number="34" hits="3" branch="false"/>
1360
+ <line number="40" hits="0" branch="false"/>
325
1361
  </lines>
326
1362
  </class>
327
- <class name="electronStoreMock.ts" filename="mocks/electronStoreMock.ts" line-rate="1" branch-rate="1">
1363
+ <class name="getProtectionStatusBatch.ts" filename="nrfutil/device/getProtectionStatusBatch.ts" line-rate="0.3333" branch-rate="0">
1364
+ <methods>
1365
+ </methods>
1366
+ <lines>
1367
+ <line number="12" hits="3" branch="false"/>
1368
+ <line number="16" hits="0" branch="false"/>
1369
+ <line number="24" hits="0" branch="false"/>
1370
+ </lines>
1371
+ </class>
1372
+ <class name="list.ts" filename="nrfutil/device/list.ts" line-rate="0.1739" branch-rate="0">
328
1373
  <methods>
329
- <method name="(anonymous_1)" hits="16" signature="()V">
1374
+ <method name="(anonymous_1)" hits="0" signature="()V">
1375
+ <lines>
1376
+ <line number="25" hits="0"/>
1377
+ </lines>
1378
+ </method>
1379
+ <method name="(anonymous_2)" hits="0" signature="()V">
330
1380
  <lines>
331
- <line number="9" hits="16"/>
1381
+ <line number="28" hits="0"/>
1382
+ </lines>
1383
+ </method>
1384
+ <method name="(anonymous_3)" hits="0" signature="()V">
1385
+ <lines>
1386
+ <line number="32" hits="0"/>
1387
+ </lines>
1388
+ </method>
1389
+ <method name="(anonymous_4)" hits="0" signature="()V">
1390
+ <lines>
1391
+ <line number="48" hits="0"/>
332
1392
  </lines>
333
1393
  </method>
334
- <method name="(anonymous_2)" hits="46" signature="()V">
1394
+ <method name="(anonymous_5)" hits="0" signature="()V">
335
1395
  <lines>
336
- <line number="13" hits="46"/>
1396
+ <line number="52" hits="0"/>
337
1397
  </lines>
338
1398
  </method>
339
1399
  </methods>
340
1400
  <lines>
341
- <line number="9" hits="16" branch="false"/>
342
- <line number="10" hits="16" branch="false"/>
343
- <line number="11" hits="16" branch="false"/>
344
- <line number="14" hits="46" branch="true" condition-coverage="100% (4/4)"/>
1401
+ <line number="13" hits="3" branch="false"/>
1402
+ <line number="25" hits="3" branch="false"/>
1403
+ <line number="26" hits="0" branch="false"/>
1404
+ <line number="28" hits="3" branch="false"/>
1405
+ <line number="30" hits="0" branch="false"/>
1406
+ <line number="32" hits="3" branch="false"/>
1407
+ <line number="41" hits="0" branch="false"/>
1408
+ <line number="42" hits="0" branch="false"/>
1409
+ <line number="44" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1410
+ <line number="45" hits="0" branch="false"/>
1411
+ <line number="48" hits="0" branch="false"/>
1412
+ <line number="49" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1413
+ <line number="50" hits="0" branch="false"/>
1414
+ <line number="52" hits="0" branch="false"/>
1415
+ <line number="56" hits="0" branch="false"/>
1416
+ <line number="59" hits="0" branch="true" condition-coverage="0% (0/3)"/>
1417
+ <line number="60" hits="0" branch="false"/>
1418
+ <line number="63" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1419
+ <line number="68" hits="0" branch="false"/>
1420
+ <line number="71" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1421
+ <line number="72" hits="0" branch="false"/>
1422
+ <line number="76" hits="0" branch="false"/>
1423
+ <line number="77" hits="0" branch="false"/>
345
1424
  </lines>
346
1425
  </class>
347
- <class name="emptyMock.ts" filename="mocks/emptyMock.ts" line-rate="1" branch-rate="1">
1426
+ <class name="program.ts" filename="nrfutil/device/program.ts" line-rate="0.2452" branch-rate="0">
348
1427
  <methods>
1428
+ <method name="(anonymous_6)" hits="0" signature="()V">
1429
+ <lines>
1430
+ <line number="44" hits="0"/>
1431
+ </lines>
1432
+ </method>
1433
+ <method name="(anonymous_7)" hits="0" signature="()V">
1434
+ <lines>
1435
+ <line number="49" hits="0"/>
1436
+ </lines>
1437
+ </method>
1438
+ <method name="(anonymous_8)" hits="0" signature="()V">
1439
+ <lines>
1440
+ <line number="54" hits="0"/>
1441
+ </lines>
1442
+ </method>
1443
+ <method name="(anonymous_9)" hits="0" signature="()V">
1444
+ <lines>
1445
+ <line number="60" hits="0"/>
1446
+ </lines>
1447
+ </method>
1448
+ <method name="(anonymous_10)" hits="0" signature="()V">
1449
+ <lines>
1450
+ <line number="63" hits="0"/>
1451
+ </lines>
1452
+ </method>
1453
+ <method name="(anonymous_11)" hits="0" signature="()V">
1454
+ <lines>
1455
+ <line number="64" hits="0"/>
1456
+ </lines>
1457
+ </method>
1458
+ <method name="(anonymous_12)" hits="0" signature="()V">
1459
+ <lines>
1460
+ <line number="75" hits="0"/>
1461
+ </lines>
1462
+ </method>
1463
+ <method name="(anonymous_13)" hits="0" signature="()V">
1464
+ <lines>
1465
+ <line number="101" hits="0"/>
1466
+ </lines>
1467
+ </method>
1468
+ <method name="(anonymous_14)" hits="0" signature="()V">
1469
+ <lines>
1470
+ <line number="123" hits="0"/>
1471
+ </lines>
1472
+ </method>
1473
+ <method name="(anonymous_15)" hits="0" signature="()V">
1474
+ <lines>
1475
+ <line number="132" hits="0"/>
1476
+ </lines>
1477
+ </method>
1478
+ <method name="(anonymous_16)" hits="0" signature="()V">
1479
+ <lines>
1480
+ <line number="158" hits="0"/>
1481
+ </lines>
1482
+ </method>
349
1483
  </methods>
350
1484
  <lines>
351
- <line number="7" hits="11" branch="false"/>
1485
+ <line number="7" hits="3" branch="false"/>
1486
+ <line number="8" hits="3" branch="false"/>
1487
+ <line number="9" hits="3" branch="false"/>
1488
+ <line number="10" hits="3" branch="false"/>
1489
+ <line number="19" hits="3" branch="false"/>
1490
+ <line number="44" hits="3" branch="false"/>
1491
+ <line number="47" hits="0" branch="false"/>
1492
+ <line number="49" hits="3" branch="false"/>
1493
+ <line number="52" hits="0" branch="false"/>
1494
+ <line number="54" hits="3" branch="false"/>
1495
+ <line number="57" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1496
+ <line number="60" hits="3" branch="false"/>
1497
+ <line number="61" hits="0" branch="false"/>
1498
+ <line number="62" hits="0" branch="false"/>
1499
+ <line number="63" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1500
+ <line number="64" hits="0" branch="false"/>
1501
+ <line number="67" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1502
+ <line number="68" hits="0" branch="false"/>
1503
+ <line number="69" hits="0" branch="false"/>
1504
+ <line number="72" hits="0" branch="false"/>
1505
+ <line number="75" hits="3" branch="false"/>
1506
+ <line number="76" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1507
+ <line number="78" hits="0" branch="false"/>
1508
+ <line number="80" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1509
+ <line number="81" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1510
+ <line number="82" hits="0" branch="false"/>
1511
+ <line number="83" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1512
+ <line number="84" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1513
+ <line number="85" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1514
+ <line number="86" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1515
+ <line number="87" hits="0" branch="false"/>
1516
+ <line number="88" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1517
+ <line number="89" hits="0" branch="false"/>
1518
+ <line number="94" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1519
+ <line number="95" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1520
+ <line number="96" hits="0" branch="false"/>
1521
+ <line number="99" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1522
+ <line number="101" hits="3" branch="false"/>
1523
+ <line number="109" hits="0" branch="false"/>
1524
+ <line number="123" hits="3" branch="false"/>
1525
+ <line number="132" hits="0" branch="false"/>
1526
+ <line number="134" hits="0" branch="false"/>
1527
+ <line number="135" hits="0" branch="false"/>
1528
+ <line number="138" hits="0" branch="false"/>
1529
+ <line number="140" hits="0" branch="false"/>
1530
+ <line number="143" hits="0" branch="false"/>
1531
+ <line number="144" hits="0" branch="false"/>
1532
+ <line number="145" hits="0" branch="false"/>
1533
+ <line number="154" hits="0" branch="false"/>
1534
+ <line number="158" hits="3" branch="false"/>
1535
+ <line number="166" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1536
+ <line number="167" hits="0" branch="false"/>
1537
+ <line number="176" hits="0" branch="false"/>
352
1538
  </lines>
353
1539
  </class>
354
- <class name="fileMock.ts" filename="mocks/fileMock.ts" line-rate="1" branch-rate="1">
1540
+ <class name="programBatch.ts" filename="nrfutil/device/programBatch.ts" line-rate="0.375" branch-rate="0">
355
1541
  <methods>
1542
+ <method name="(anonymous_3)" hits="0" signature="()V">
1543
+ <lines>
1544
+ <line number="43" hits="0"/>
1545
+ </lines>
1546
+ </method>
1547
+ <method name="(anonymous_4)" hits="0" signature="()V">
1548
+ <lines>
1549
+ <line number="55" hits="0"/>
1550
+ </lines>
1551
+ </method>
356
1552
  </methods>
357
1553
  <lines>
358
- <line number="13" hits="122" branch="false"/>
1554
+ <line number="7" hits="3" branch="false"/>
1555
+ <line number="8" hits="3" branch="false"/>
1556
+ <line number="9" hits="3" branch="false"/>
1557
+ <line number="10" hits="3" branch="false"/>
1558
+ <line number="18" hits="3" branch="false"/>
1559
+ <line number="29" hits="0" branch="false"/>
1560
+ <line number="43" hits="3" branch="false"/>
1561
+ <line number="51" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1562
+ <line number="52" hits="0" branch="false"/>
1563
+ <line number="55" hits="0" branch="false"/>
1564
+ <line number="57" hits="0" branch="false"/>
1565
+ <line number="58" hits="0" branch="false"/>
1566
+ <line number="61" hits="0" branch="false"/>
1567
+ <line number="63" hits="0" branch="false"/>
1568
+ <line number="66" hits="0" branch="false"/>
1569
+ <line number="68" hits="0" branch="false"/>
359
1570
  </lines>
360
1571
  </class>
361
- <class name="packageJsonMock.ts" filename="mocks/packageJsonMock.ts" line-rate="1" branch-rate="1">
1572
+ <class name="recover.ts" filename="nrfutil/device/recover.ts" line-rate="0.6666" branch-rate="0">
362
1573
  <methods>
363
- <method name="(anonymous_1)" hits="26" signature="()V">
1574
+ <method name="(anonymous_1)" hits="0" signature="()V">
364
1575
  <lines>
365
- <line number="7" hits="26"/>
1576
+ <line number="14" hits="0"/>
366
1577
  </lines>
367
1578
  </method>
368
1579
  </methods>
369
1580
  <lines>
370
- <line number="7" hits="26" branch="false"/>
1581
+ <line number="12" hits="3" branch="false"/>
1582
+ <line number="14" hits="3" branch="false"/>
1583
+ <line number="20" hits="0" branch="false"/>
371
1584
  </lines>
372
1585
  </class>
373
- <class name="remoteMock.ts" filename="mocks/remoteMock.ts" line-rate="0.6" branch-rate="1">
1586
+ <class name="recoverBatch.ts" filename="nrfutil/device/recoverBatch.ts" line-rate="0.3333" branch-rate="0">
374
1587
  <methods>
375
- <method name="(anonymous_4)" hits="1" signature="()V">
1588
+ </methods>
1589
+ <lines>
1590
+ <line number="12" hits="3" branch="false"/>
1591
+ <line number="15" hits="0" branch="false"/>
1592
+ <line number="20" hits="0" branch="false"/>
1593
+ </lines>
1594
+ </class>
1595
+ <class name="reset.ts" filename="nrfutil/device/reset.ts" line-rate="0.2" branch-rate="0">
1596
+ <methods>
1597
+ <method name="(anonymous_1)" hits="0" signature="()V">
376
1598
  <lines>
377
- <line number="10" hits="1"/>
1599
+ <line number="15" hits="0"/>
378
1600
  </lines>
379
1601
  </method>
380
- <method name="(anonymous_5)" hits="0" signature="()V">
1602
+ </methods>
1603
+ <lines>
1604
+ <line number="13" hits="3" branch="false"/>
1605
+ <line number="15" hits="3" branch="false"/>
1606
+ <line number="22" hits="0" branch="false"/>
1607
+ <line number="24" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1608
+ <line number="25" hits="0" branch="false"/>
1609
+ <line number="26" hits="0" branch="false"/>
1610
+ <line number="29" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1611
+ <line number="30" hits="0" branch="false"/>
1612
+ <line number="31" hits="0" branch="false"/>
1613
+ <line number="34" hits="0" branch="false"/>
1614
+ </lines>
1615
+ </class>
1616
+ <class name="resetBatch.ts" filename="nrfutil/device/resetBatch.ts" line-rate="0.3333" branch-rate="0">
1617
+ <methods>
1618
+ </methods>
1619
+ <lines>
1620
+ <line number="12" hits="3" branch="false"/>
1621
+ <line number="15" hits="0" branch="false"/>
1622
+ <line number="21" hits="0" branch="false"/>
1623
+ </lines>
1624
+ </class>
1625
+ <class name="setMcuState.ts" filename="nrfutil/device/setMcuState.ts" line-rate="0.6666" branch-rate="1">
1626
+ <methods>
1627
+ <method name="(anonymous_1)" hits="0" signature="()V">
381
1628
  <lines>
382
- <line number="13" hits="0"/>
1629
+ <line number="15" hits="0"/>
383
1630
  </lines>
384
1631
  </method>
385
- <method name="(anonymous_6)" hits="0" signature="()V">
1632
+ </methods>
1633
+ <lines>
1634
+ <line number="11" hits="3" branch="false"/>
1635
+ <line number="15" hits="3" branch="false"/>
1636
+ <line number="21" hits="0" branch="false"/>
1637
+ </lines>
1638
+ </class>
1639
+ <class name="setProtectionStatus.ts" filename="nrfutil/device/setProtectionStatus.ts" line-rate="0.6666" branch-rate="0">
1640
+ <methods>
1641
+ <method name="(anonymous_1)" hits="0" signature="()V">
386
1642
  <lines>
387
- <line number="16" hits="0"/>
1643
+ <line number="14" hits="0"/>
388
1644
  </lines>
389
1645
  </method>
390
1646
  </methods>
391
1647
  <lines>
392
- <line number="9" hits="13" branch="false"/>
393
- <line number="10" hits="13" branch="false"/>
394
- <line number="13" hits="0" branch="false"/>
395
- <line number="15" hits="13" branch="false"/>
396
- <line number="16" hits="0" branch="false"/>
1648
+ <line number="12" hits="3" branch="false"/>
1649
+ <line number="14" hits="3" branch="false"/>
1650
+ <line number="21" hits="0" branch="false"/>
397
1651
  </lines>
398
1652
  </class>
399
1653
  </classes>
@@ -556,9 +1810,9 @@
556
1810
  <line number="20" hits="98"/>
557
1811
  </lines>
558
1812
  </method>
559
- <method name="(anonymous_4)" hits="220" signature="()V">
1813
+ <method name="(anonymous_4)" hits="218" signature="()V">
560
1814
  <lines>
561
- <line number="23" hits="220"/>
1815
+ <line number="23" hits="218"/>
562
1816
  </lines>
563
1817
  </method>
564
1818
  <method name="(anonymous_5)" hits="49" signature="()V">
@@ -590,7 +1844,7 @@
590
1844
  <line number="18" hits="9" branch="false"/>
591
1845
  <line number="20" hits="9" branch="false"/>
592
1846
  <line number="21" hits="98" branch="true" condition-coverage="50% (1/2)"/>
593
- <line number="23" hits="220" branch="true" condition-coverage="100% (1/1)"/>
1847
+ <line number="23" hits="218" branch="true" condition-coverage="100% (1/1)"/>
594
1848
  <line number="25" hits="49" branch="true" condition-coverage="100% (1/1)"/>
595
1849
  <line number="38" hits="9" branch="false"/>
596
1850
  <line number="39" hits="49" branch="false"/>
@@ -769,22 +2023,22 @@
769
2023
  <methods>
770
2024
  <method name="(anonymous_2)" hits="1" signature="()V">
771
2025
  <lines>
772
- <line number="29" hits="1"/>
2026
+ <line number="26" hits="1"/>
773
2027
  </lines>
774
2028
  </method>
775
2029
  <method name="(anonymous_3)" hits="0" signature="()V">
776
2030
  <lines>
777
- <line number="57" hits="0"/>
2031
+ <line number="54" hits="0"/>
778
2032
  </lines>
779
2033
  </method>
780
2034
  <method name="(anonymous_4)" hits="0" signature="()V">
781
2035
  <lines>
782
- <line number="77" hits="0"/>
2036
+ <line number="74" hits="0"/>
783
2037
  </lines>
784
2038
  </method>
785
2039
  <method name="(anonymous_5)" hits="0" signature="()V">
786
2040
  <lines>
787
- <line number="88" hits="0"/>
2041
+ <line number="85" hits="0"/>
788
2042
  </lines>
789
2043
  </method>
790
2044
  </methods>
@@ -796,24 +2050,24 @@
796
2050
  <line number="12" hits="1" branch="false"/>
797
2051
  <line number="13" hits="1" branch="false"/>
798
2052
  <line number="18" hits="1" branch="false"/>
2053
+ <line number="19" hits="1" branch="false"/>
2054
+ <line number="20" hits="1" branch="false"/>
2055
+ <line number="21" hits="1" branch="false"/>
799
2056
  <line number="22" hits="1" branch="false"/>
800
2057
  <line number="23" hits="1" branch="false"/>
801
2058
  <line number="24" hits="1" branch="false"/>
802
- <line number="25" hits="1" branch="false"/>
803
2059
  <line number="26" hits="1" branch="false"/>
804
2060
  <line number="27" hits="1" branch="false"/>
2061
+ <line number="28" hits="1" branch="false"/>
805
2062
  <line number="29" hits="1" branch="false"/>
806
2063
  <line number="30" hits="1" branch="false"/>
807
- <line number="31" hits="1" branch="false"/>
808
- <line number="32" hits="1" branch="false"/>
809
- <line number="33" hits="1" branch="false"/>
810
- <line number="34" hits="1" branch="false"/>
811
- <line number="36" hits="1" branch="false"/>
812
- <line number="58" hits="0" branch="false"/>
813
- <line number="78" hits="0" branch="false"/>
814
- <line number="79" hits="0" branch="false"/>
815
- <line number="89" hits="0" branch="false"/>
816
- <line number="90" hits="0" branch="false"/>
2064
+ <line number="31" hits="1" branch="false"/>
2065
+ <line number="33" hits="1" branch="false"/>
2066
+ <line number="55" hits="0" branch="false"/>
2067
+ <line number="75" hits="0" branch="false"/>
2068
+ <line number="76" hits="0" branch="false"/>
2069
+ <line number="86" hits="0" branch="false"/>
2070
+ <line number="87" hits="0" branch="false"/>
817
2071
  </lines>
818
2072
  </class>
819
2073
  <class name="shortcutSlice.ts" filename="src/About/shortcutSlice.ts" line-rate="0.7222" branch-rate="1">
@@ -877,78 +2131,78 @@
877
2131
  </class>
878
2132
  </classes>
879
2133
  </package>
880
- <package name="src.App" line-rate="0.7887000000000001" branch-rate="0.5625">
2134
+ <package name="src.App" line-rate="0.8" branch-rate="0.5757">
881
2135
  <classes>
882
- <class name="App.tsx" filename="src/App/App.tsx" line-rate="0.8536" branch-rate="0.5">
2136
+ <class name="App.tsx" filename="src/App/App.tsx" line-rate="0.8665999999999999" branch-rate="0.5185">
883
2137
  <methods>
884
2138
  <method name="(anonymous_7)" hits="0" signature="()V">
885
2139
  <lines>
886
- <line number="51" hits="0"/>
2140
+ <line number="53" hits="0"/>
887
2141
  </lines>
888
2142
  </method>
889
2143
  <method name="(anonymous_8)" hits="1" signature="()V">
890
2144
  <lines>
891
- <line number="85" hits="1"/>
2145
+ <line number="87" hits="1"/>
892
2146
  </lines>
893
2147
  </method>
894
2148
  <method name="(anonymous_9)" hits="1" signature="()V">
895
2149
  <lines>
896
- <line number="109" hits="1"/>
2150
+ <line number="120" hits="1"/>
897
2151
  </lines>
898
2152
  </method>
899
2153
  <method name="(anonymous_10)" hits="1" signature="()V">
900
2154
  <lines>
901
- <line number="113" hits="1"/>
2155
+ <line number="124" hits="1"/>
902
2156
  </lines>
903
2157
  </method>
904
2158
  <method name="(anonymous_11)" hits="1" signature="()V">
905
2159
  <lines>
906
- <line number="126" hits="1"/>
2160
+ <line number="137" hits="1"/>
907
2161
  </lines>
908
2162
  </method>
909
2163
  <method name="(anonymous_12)" hits="3" signature="()V">
910
2164
  <lines>
911
- <line number="155" hits="3"/>
2165
+ <line number="166" hits="3"/>
912
2166
  </lines>
913
2167
  </method>
914
2168
  <method name="(anonymous_13)" hits="1" signature="()V">
915
2169
  <lines>
916
- <line number="181" hits="1"/>
2170
+ <line number="192" hits="1"/>
917
2171
  </lines>
918
2172
  </method>
919
2173
  <method name="(anonymous_14)" hits="1" signature="()V">
920
2174
  <lines>
921
- <line number="197" hits="1"/>
2175
+ <line number="208" hits="1"/>
922
2176
  </lines>
923
2177
  </method>
924
2178
  <method name="(anonymous_15)" hits="1" signature="()V">
925
2179
  <lines>
926
- <line number="208" hits="1"/>
2180
+ <line number="219" hits="1"/>
927
2181
  </lines>
928
2182
  </method>
929
2183
  <method name="(anonymous_16)" hits="1" signature="()V">
930
2184
  <lines>
931
- <line number="210" hits="1"/>
2185
+ <line number="221" hits="1"/>
932
2186
  </lines>
933
2187
  </method>
934
2188
  <method name="(anonymous_17)" hits="1" signature="()V">
935
2189
  <lines>
936
- <line number="216" hits="1"/>
2190
+ <line number="227" hits="1"/>
937
2191
  </lines>
938
2192
  </method>
939
2193
  <method name="(anonymous_18)" hits="1" signature="()V">
940
2194
  <lines>
941
- <line number="223" hits="1"/>
2195
+ <line number="234" hits="1"/>
942
2196
  </lines>
943
2197
  </method>
944
2198
  <method name="(anonymous_21)" hits="1" signature="()V">
945
2199
  <lines>
946
- <line number="248" hits="1"/>
2200
+ <line number="259" hits="1"/>
947
2201
  </lines>
948
2202
  </method>
949
2203
  <method name="(anonymous_22)" hits="0" signature="()V">
950
2204
  <lines>
951
- <line number="255" hits="0"/>
2205
+ <line number="266" hits="0"/>
952
2206
  </lines>
953
2207
  </method>
954
2208
  </methods>
@@ -962,7 +2216,7 @@
962
2216
  <line number="16" hits="1" branch="false"/>
963
2217
  <line number="17" hits="1" branch="false"/>
964
2218
  <line number="18" hits="1" branch="false"/>
965
- <line number="23" hits="1" branch="false"/>
2219
+ <line number="19" hits="1" branch="false"/>
966
2220
  <line number="24" hits="1" branch="false"/>
967
2221
  <line number="25" hits="1" branch="false"/>
968
2222
  <line number="26" hits="1" branch="false"/>
@@ -974,67 +2228,75 @@
974
2228
  <line number="32" hits="1" branch="false"/>
975
2229
  <line number="33" hits="1" branch="false"/>
976
2230
  <line number="34" hits="1" branch="false"/>
977
- <line number="42" hits="1" branch="false"/>
978
- <line number="43" hits="1" branch="false"/>
2231
+ <line number="35" hits="1" branch="false"/>
2232
+ <line number="36" hits="1" branch="false"/>
979
2233
  <line number="44" hits="1" branch="false"/>
2234
+ <line number="45" hits="1" branch="false"/>
980
2235
  <line number="46" hits="1" branch="false"/>
981
- <line number="47" hits="1" branch="false"/>
982
2236
  <line number="48" hits="1" branch="false"/>
2237
+ <line number="49" hits="1" branch="false"/>
983
2238
  <line number="50" hits="1" branch="false"/>
984
- <line number="51" hits="1" branch="false"/>
985
- <line number="52" hits="0" branch="true" condition-coverage="0% (0/1)"/>
986
- <line number="53" hits="0" branch="false"/>
987
- <line number="54" hits="0" branch="false"/>
2239
+ <line number="52" hits="1" branch="false"/>
2240
+ <line number="53" hits="1" branch="false"/>
2241
+ <line number="54" hits="0" branch="true" condition-coverage="0% (0/1)"/>
988
2242
  <line number="55" hits="0" branch="false"/>
989
- <line number="58" hits="0" branch="false"/>
990
- <line number="85" hits="1" branch="false"/>
991
- <line number="96" hits="1" branch="false"/>
992
- <line number="97" hits="1" branch="false"/>
2243
+ <line number="56" hits="0" branch="false"/>
2244
+ <line number="57" hits="0" branch="false"/>
2245
+ <line number="60" hits="0" branch="false"/>
2246
+ <line number="87" hits="1" branch="false"/>
993
2247
  <line number="98" hits="1" branch="false"/>
994
- <line number="99" hits="1" branch="false"/>
995
- <line number="100" hits="1" branch="false"/>
2248
+ <line number="100" hits="1" branch="true" condition-coverage="100% (1/1)"/>
2249
+ <line number="101" hits="1" branch="false"/>
996
2250
  <line number="102" hits="1" branch="false"/>
2251
+ <line number="103" hits="1" branch="false"/>
2252
+ <line number="104" hits="1" branch="false"/>
2253
+ <line number="107" hits="1" branch="false"/>
2254
+ <line number="108" hits="1" branch="false"/>
997
2255
  <line number="109" hits="1" branch="false"/>
998
2256
  <line number="110" hits="1" branch="false"/>
2257
+ <line number="111" hits="1" branch="false"/>
999
2258
  <line number="113" hits="1" branch="false"/>
1000
- <line number="114" hits="1" branch="true" condition-coverage="0% (0/1)"/>
1001
- <line number="115" hits="0" branch="false"/>
1002
- <line number="119" hits="1" branch="false"/>
1003
- <line number="121" hits="1" branch="true" condition-coverage="50% (1/2)"/>
1004
- <line number="124" hits="1" branch="true" condition-coverage="100% (2/2)"/>
1005
- <line number="126" hits="1" branch="false"/>
1006
- <line number="127" hits="1" branch="true" condition-coverage="0% (0/1)"/>
1007
- <line number="128" hits="0" branch="false"/>
1008
- <line number="132" hits="1" branch="false"/>
1009
- <line number="156" hits="3" branch="false"/>
1010
- <line number="181" hits="1" branch="false"/>
1011
- <line number="182" hits="1" branch="false"/>
1012
- <line number="183" hits="1" branch="false"/>
1013
- <line number="184" hits="1" branch="false"/>
1014
- <line number="186" hits="1" branch="false"/>
2259
+ <line number="120" hits="1" branch="false"/>
2260
+ <line number="121" hits="1" branch="false"/>
2261
+ <line number="124" hits="1" branch="false"/>
2262
+ <line number="125" hits="1" branch="true" condition-coverage="0% (0/1)"/>
2263
+ <line number="126" hits="0" branch="false"/>
2264
+ <line number="130" hits="1" branch="false"/>
2265
+ <line number="132" hits="1" branch="true" condition-coverage="50% (1/2)"/>
2266
+ <line number="135" hits="1" branch="true" condition-coverage="100% (2/2)"/>
2267
+ <line number="137" hits="1" branch="false"/>
2268
+ <line number="138" hits="1" branch="true" condition-coverage="0% (0/1)"/>
2269
+ <line number="139" hits="0" branch="false"/>
2270
+ <line number="143" hits="1" branch="false"/>
2271
+ <line number="167" hits="3" branch="false"/>
2272
+ <line number="192" hits="1" branch="false"/>
2273
+ <line number="193" hits="1" branch="false"/>
2274
+ <line number="194" hits="1" branch="false"/>
2275
+ <line number="195" hits="1" branch="false"/>
1015
2276
  <line number="197" hits="1" branch="false"/>
1016
- <line number="201" hits="1" branch="false"/>
1017
2277
  <line number="208" hits="1" branch="false"/>
1018
- <line number="209" hits="1" branch="false"/>
1019
- <line number="210" hits="1" branch="false"/>
1020
- <line number="211" hits="1" branch="true" condition-coverage="75% (3/4)"/>
1021
2278
  <line number="212" hits="1" branch="false"/>
1022
- <line number="216" hits="1" branch="false"/>
2279
+ <line number="219" hits="1" branch="false"/>
2280
+ <line number="220" hits="1" branch="false"/>
1023
2281
  <line number="221" hits="1" branch="false"/>
2282
+ <line number="222" hits="1" branch="true" condition-coverage="75% (3/4)"/>
1024
2283
  <line number="223" hits="1" branch="false"/>
1025
- <line number="224" hits="1" branch="false"/>
1026
- <line number="226" hits="1" branch="true" condition-coverage="0% (0/1)"/>
1027
- <line number="227" hits="0" branch="false"/>
1028
- <line number="240" hits="1" branch="false"/>
1029
- <line number="245" hits="1" branch="false"/>
1030
- <line number="248" hits="1" branch="false"/>
1031
- <line number="249" hits="1" branch="false"/>
1032
- <line number="252" hits="1" branch="false"/>
1033
- <line number="255" hits="1" branch="false"/>
1034
- <line number="256" hits="0" branch="false"/>
1035
- <line number="257" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1036
- <line number="258" hits="0" branch="false"/>
1037
- <line number="260" hits="0" branch="false"/>
2284
+ <line number="227" hits="1" branch="false"/>
2285
+ <line number="232" hits="1" branch="false"/>
2286
+ <line number="234" hits="1" branch="false"/>
2287
+ <line number="235" hits="1" branch="false"/>
2288
+ <line number="237" hits="1" branch="true" condition-coverage="0% (0/1)"/>
2289
+ <line number="238" hits="0" branch="false"/>
2290
+ <line number="251" hits="1" branch="false"/>
2291
+ <line number="256" hits="1" branch="false"/>
2292
+ <line number="259" hits="1" branch="false"/>
2293
+ <line number="260" hits="1" branch="false"/>
2294
+ <line number="263" hits="1" branch="false"/>
2295
+ <line number="266" hits="1" branch="false"/>
2296
+ <line number="267" hits="0" branch="false"/>
2297
+ <line number="268" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2298
+ <line number="269" hits="0" branch="false"/>
2299
+ <line number="271" hits="0" branch="false"/>
1038
2300
  </lines>
1039
2301
  </class>
1040
2302
  <class name="ConnectedToStore.tsx" filename="src/App/ConnectedToStore.tsx" line-rate="1" branch-rate="1">
@@ -1267,7 +2529,7 @@
1267
2529
  </class>
1268
2530
  </classes>
1269
2531
  </package>
1270
- <package name="src.Device" line-rate="0.3814" branch-rate="0.18530000000000002">
2532
+ <package name="src.Device" line-rate="0.3734" branch-rate="0.16949999999999998">
1271
2533
  <classes>
1272
2534
  <class name="deviceAutoSelectSlice.ts" filename="src/Device/deviceAutoSelectSlice.ts" line-rate="0.62" branch-rate="0.44439999999999996">
1273
2535
  <methods>
@@ -1410,129 +2672,7 @@
1410
2672
  <line number="150" hits="0" branch="false"/>
1411
2673
  </lines>
1412
2674
  </class>
1413
- <class name="deviceLibWrapper.ts" filename="src/Device/deviceLibWrapper.ts" line-rate="0.4901" branch-rate="0.4838">
1414
- <methods>
1415
- <method name="(anonymous_7)" hits="36" signature="()V">
1416
- <lines>
1417
- <line number="29" hits="36"/>
1418
- </lines>
1419
- </method>
1420
- <method name="(anonymous_8)" hits="1" signature="()V">
1421
- <lines>
1422
- <line number="35" hits="1"/>
1423
- </lines>
1424
- </method>
1425
- <method name="(anonymous_9)" hits="0" signature="()V">
1426
- <lines>
1427
- <line number="58" hits="0"/>
1428
- </lines>
1429
- </method>
1430
- <method name="(anonymous_10)" hits="0" signature="()V">
1431
- <lines>
1432
- <line number="82" hits="0"/>
1433
- </lines>
1434
- </method>
1435
- <method name="(anonymous_11)" hits="0" signature="()V">
1436
- <lines>
1437
- <line number="91" hits="0"/>
1438
- </lines>
1439
- </method>
1440
- <method name="(anonymous_12)" hits="0" signature="()V">
1441
- <lines>
1442
- <line number="98" hits="0"/>
1443
- </lines>
1444
- </method>
1445
- <method name="(anonymous_13)" hits="0" signature="()V">
1446
- <lines>
1447
- <line number="100" hits="0"/>
1448
- </lines>
1449
- </method>
1450
- <method name="(anonymous_14)" hits="0" signature="()V">
1451
- <lines>
1452
- <line number="105" hits="0"/>
1453
- </lines>
1454
- </method>
1455
- <method name="(anonymous_15)" hits="5" signature="()V">
1456
- <lines>
1457
- <line number="113" hits="5"/>
1458
- </lines>
1459
- </method>
1460
- <method name="(anonymous_16)" hits="7" signature="()V">
1461
- <lines>
1462
- <line number="114" hits="7"/>
1463
- </lines>
1464
- </method>
1465
- <method name="(anonymous_17)" hits="3" signature="()V">
1466
- <lines>
1467
- <line number="116" hits="3"/>
1468
- </lines>
1469
- </method>
1470
- <method name="(anonymous_18)" hits="4" signature="()V">
1471
- <lines>
1472
- <line number="120" hits="4"/>
1473
- </lines>
1474
- </method>
1475
- <method name="(anonymous_19)" hits="5" signature="()V">
1476
- <lines>
1477
- <line number="128" hits="5"/>
1478
- </lines>
1479
- </method>
1480
- </methods>
1481
- <lines>
1482
- <line number="7" hits="5" branch="false"/>
1483
- <line number="18" hits="5" branch="false"/>
1484
- <line number="19" hits="5" branch="false"/>
1485
- <line number="21" hits="5" branch="false"/>
1486
- <line number="22" hits="5" branch="false"/>
1487
- <line number="26" hits="5" branch="false"/>
1488
- <line number="28" hits="5" branch="false"/>
1489
- <line number="29" hits="35" branch="false"/>
1490
- <line number="30" hits="36" branch="true" condition-coverage="100% (1/1)"/>
1491
- <line number="32" hits="36" branch="false"/>
1492
- <line number="35" hits="5" branch="false"/>
1493
- <line number="36" hits="1" branch="true" condition-coverage="50% (1/2)"/>
1494
- <line number="37" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1495
- <line number="40" hits="0" branch="false"/>
1496
- <line number="50" hits="1" branch="false"/>
1497
- <line number="53" hits="1" branch="false"/>
1498
- <line number="58" hits="5" branch="false"/>
1499
- <line number="59" hits="0" branch="true" condition-coverage="0% (0/3)"/>
1500
- <line number="60" hits="0" branch="true" condition-coverage="0% (0/6)"/>
1501
- <line number="62" hits="0" branch="false"/>
1502
- <line number="63" hits="0" branch="false"/>
1503
- <line number="65" hits="0" branch="false"/>
1504
- <line number="66" hits="0" branch="false"/>
1505
- <line number="68" hits="0" branch="false"/>
1506
- <line number="69" hits="0" branch="false"/>
1507
- <line number="71" hits="0" branch="false"/>
1508
- <line number="72" hits="0" branch="false"/>
1509
- <line number="74" hits="0" branch="false"/>
1510
- <line number="75" hits="0" branch="false"/>
1511
- <line number="77" hits="0" branch="false"/>
1512
- <line number="78" hits="0" branch="false"/>
1513
- <line number="82" hits="5" branch="false"/>
1514
- <line number="83" hits="0" branch="false"/>
1515
- <line number="84" hits="0" branch="false"/>
1516
- <line number="87" hits="0" branch="false"/>
1517
- <line number="89" hits="0" branch="false"/>
1518
- <line number="92" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1519
- <line number="93" hits="0" branch="false"/>
1520
- <line number="98" hits="0" branch="false"/>
1521
- <line number="100" hits="0" branch="false"/>
1522
- <line number="101" hits="0" branch="false"/>
1523
- <line number="105" hits="5" branch="false"/>
1524
- <line number="106" hits="0" branch="false"/>
1525
- <line number="113" hits="5" branch="false"/>
1526
- <line number="114" hits="7" branch="false"/>
1527
- <line number="116" hits="5" branch="false"/>
1528
- <line number="117" hits="3" branch="true" condition-coverage="100% (1/1)"/>
1529
- <line number="118" hits="3" branch="false"/>
1530
- <line number="120" hits="4" branch="false"/>
1531
- <line number="128" hits="5" branch="false"/>
1532
- <line number="132" hits="5" branch="true" condition-coverage="100% (4/4)"/>
1533
- </lines>
1534
- </class>
1535
- <class name="deviceLister.ts" filename="src/Device/deviceLister.ts" line-rate="0.24789999999999998" branch-rate="0.0545">
2675
+ <class name="deviceLister.ts" filename="src/Device/deviceLister.ts" line-rate="0.3333" branch-rate="0.0925">
1536
2676
  <methods>
1537
2677
  <method name="(anonymous_8)" hits="0" signature="()V">
1538
2678
  <lines>
@@ -1561,88 +2701,107 @@
1561
2701
  </method>
1562
2702
  <method name="(anonymous_15)" hits="0" signature="()V">
1563
2703
  <lines>
1564
- <line number="123" hits="0"/>
2704
+ <line number="121" hits="0"/>
1565
2705
  </lines>
1566
2706
  </method>
1567
2707
  <method name="(anonymous_16)" hits="7" signature="()V">
1568
2708
  <lines>
1569
- <line number="126" hits="7"/>
2709
+ <line number="124" hits="7"/>
1570
2710
  </lines>
1571
2711
  </method>
1572
2712
  <method name="(anonymous_17)" hits="39" signature="()V">
1573
2713
  <lines>
1574
- <line number="131" hits="39"/>
2714
+ <line number="129" hits="39"/>
1575
2715
  </lines>
1576
2716
  </method>
1577
2717
  <method name="(anonymous_18)" hits="32" signature="()V">
1578
2718
  <lines>
1579
- <line number="136" hits="32"/>
2719
+ <line number="134" hits="32"/>
1580
2720
  </lines>
1581
2721
  </method>
1582
2722
  <method name="(anonymous_19)" hits="0" signature="()V">
1583
2723
  <lines>
1584
- <line number="140" hits="0"/>
2724
+ <line number="138" hits="0"/>
1585
2725
  </lines>
1586
2726
  </method>
1587
2727
  <method name="(anonymous_20)" hits="0" signature="()V">
1588
2728
  <lines>
1589
- <line number="145" hits="0"/>
2729
+ <line number="143" hits="0"/>
1590
2730
  </lines>
1591
2731
  </method>
1592
2732
  <method name="(anonymous_22)" hits="11" signature="()V">
1593
2733
  <lines>
1594
- <line number="179" hits="11"/>
2734
+ <line number="177" hits="11"/>
1595
2735
  </lines>
1596
2736
  </method>
1597
2737
  <method name="(anonymous_23)" hits="0" signature="()V">
1598
2738
  <lines>
1599
- <line number="180" hits="0"/>
2739
+ <line number="178" hits="0"/>
1600
2740
  </lines>
1601
2741
  </method>
1602
2742
  <method name="(anonymous_24)" hits="0" signature="()V">
1603
2743
  <lines>
1604
- <line number="306" hits="0"/>
2744
+ <line number="282" hits="0"/>
1605
2745
  </lines>
1606
2746
  </method>
1607
2747
  <method name="(anonymous_25)" hits="0" signature="()V">
1608
2748
  <lines>
1609
- <line number="322" hits="0"/>
2749
+ <line number="285" hits="0"/>
1610
2750
  </lines>
1611
2751
  </method>
1612
2752
  <method name="(anonymous_26)" hits="0" signature="()V">
1613
2753
  <lines>
1614
- <line number="385" hits="0"/>
2754
+ <line number="298" hits="0"/>
1615
2755
  </lines>
1616
2756
  </method>
1617
- <method name="(anonymous_27)" hits="0" signature="()V">
2757
+ <method name="(anonymous_27)" hits="1" signature="()V">
1618
2758
  <lines>
1619
- <line number="396" hits="0"/>
2759
+ <line number="333" hits="1"/>
1620
2760
  </lines>
1621
2761
  </method>
1622
2762
  <method name="(anonymous_28)" hits="0" signature="()V">
1623
2763
  <lines>
1624
- <line number="398" hits="0"/>
2764
+ <line number="336" hits="0"/>
2765
+ </lines>
2766
+ </method>
2767
+ <method name="(anonymous_29)" hits="21" signature="()V">
2768
+ <lines>
2769
+ <line number="341" hits="21"/>
2770
+ </lines>
2771
+ </method>
2772
+ <method name="(anonymous_30)" hits="0" signature="()V">
2773
+ <lines>
2774
+ <line number="342" hits="0"/>
2775
+ </lines>
2776
+ </method>
2777
+ <method name="(anonymous_31)" hits="1" signature="()V">
2778
+ <lines>
2779
+ <line number="362" hits="1"/>
2780
+ </lines>
2781
+ </method>
2782
+ <method name="(anonymous_32)" hits="4" signature="()V">
2783
+ <lines>
2784
+ <line number="364" hits="4"/>
1625
2785
  </lines>
1626
2786
  </method>
1627
- <method name="(anonymous_30)" hits="8" signature="()V">
2787
+ <method name="(anonymous_34)" hits="8" signature="()V">
1628
2788
  <lines>
1629
- <line number="402" hits="8"/>
2789
+ <line number="368" hits="8"/>
1630
2790
  </lines>
1631
2791
  </method>
1632
- <method name="(anonymous_31)" hits="22" signature="()V">
2792
+ <method name="(anonymous_35)" hits="22" signature="()V">
1633
2793
  <lines>
1634
- <line number="414" hits="22"/>
2794
+ <line number="375" hits="22"/>
1635
2795
  </lines>
1636
2796
  </method>
1637
2797
  </methods>
1638
2798
  <lines>
1639
- <line number="11" hits="2" branch="false"/>
2799
+ <line number="12" hits="2" branch="false"/>
1640
2800
  <line number="13" hits="2" branch="false"/>
1641
2801
  <line number="23" hits="2" branch="false"/>
1642
2802
  <line number="24" hits="2" branch="false"/>
1643
2803
  <line number="25" hits="2" branch="false"/>
1644
2804
  <line number="26" hits="2" branch="false"/>
1645
- <line number="27" hits="2" branch="false"/>
1646
2805
  <line number="29" hits="2" branch="false"/>
1647
2806
  <line number="31" hits="2" branch="false"/>
1648
2807
  <line number="35" hits="0" branch="false"/>
@@ -1666,97 +2825,88 @@
1666
2825
  <line number="86" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1667
2826
  <line number="91" hits="0" branch="false"/>
1668
2827
  <line number="92" hits="0" branch="false"/>
1669
- <line number="102" hits="2" branch="false"/>
1670
- <line number="110" hits="0" branch="false"/>
1671
- <line number="123" hits="2" branch="false"/>
1672
- <line number="124" hits="0" branch="false"/>
1673
- <line number="126" hits="7" branch="false"/>
1674
- <line number="130" hits="7" branch="true" condition-coverage="100% (2/2)"/>
1675
- <line number="132" hits="39" branch="true" condition-coverage="100% (2/2)"/>
1676
- <line number="136" hits="32" branch="false"/>
1677
- <line number="140" hits="2" branch="false"/>
1678
- <line number="145" hits="0" branch="false"/>
1679
- <line number="146" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1680
- <line number="150" hits="0" branch="false"/>
1681
- <line number="153" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1682
- <line number="158" hits="0" branch="false"/>
1683
- <line number="161" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1684
- <line number="162" hits="0" branch="false"/>
1685
- <line number="163" hits="0" branch="false"/>
1686
- <line number="171" hits="11" branch="false"/>
1687
- <line number="179" hits="11" branch="false"/>
1688
- <line number="180" hits="11" branch="false"/>
1689
- <line number="181" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1690
- <line number="183" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1691
- <line number="184" hits="0" branch="false"/>
1692
- <line number="186" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1693
- <line number="192" hits="0" branch="false"/>
1694
- <line number="193" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1695
- <line number="196" hits="0" branch="false"/>
1696
- <line number="199" hits="0" branch="false"/>
1697
- <line number="201" hits="0" branch="false"/>
2828
+ <line number="108" hits="0" branch="false"/>
2829
+ <line number="121" hits="2" branch="false"/>
2830
+ <line number="122" hits="0" branch="false"/>
2831
+ <line number="124" hits="7" branch="false"/>
2832
+ <line number="128" hits="7" branch="true" condition-coverage="100% (2/2)"/>
2833
+ <line number="130" hits="39" branch="true" condition-coverage="100% (2/2)"/>
2834
+ <line number="134" hits="32" branch="false"/>
2835
+ <line number="138" hits="2" branch="false"/>
2836
+ <line number="143" hits="0" branch="false"/>
2837
+ <line number="144" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2838
+ <line number="148" hits="0" branch="false"/>
2839
+ <line number="151" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2840
+ <line number="156" hits="0" branch="false"/>
2841
+ <line number="159" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2842
+ <line number="160" hits="0" branch="false"/>
2843
+ <line number="161" hits="0" branch="false"/>
2844
+ <line number="169" hits="11" branch="false"/>
2845
+ <line number="177" hits="11" branch="false"/>
2846
+ <line number="178" hits="11" branch="false"/>
2847
+ <line number="179" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2848
+ <line number="180" hits="0" branch="false"/>
2849
+ <line number="181" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2850
+ <line number="185" hits="0" branch="false"/>
2851
+ <line number="188" hits="0" branch="false"/>
2852
+ <line number="190" hits="0" branch="false"/>
2853
+ <line number="191" hits="0" branch="false"/>
2854
+ <line number="193" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2855
+ <line number="195" hits="0" branch="false"/>
1698
2856
  <line number="203" hits="0" branch="false"/>
1699
- <line number="205" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1700
- <line number="209" hits="0" branch="false"/>
1701
- <line number="217" hits="0" branch="false"/>
1702
- <line number="219" hits="0" branch="false"/>
1703
- <line number="221" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1704
- <line number="223" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1705
- <line number="224" hits="0" branch="false"/>
1706
- <line number="227" hits="0" branch="false"/>
1707
- <line number="228" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1708
- <line number="233" hits="0" branch="false"/>
1709
- <line number="245" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1710
- <line number="255" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1711
- <line number="274" hits="0" branch="false"/>
1712
- <line number="279" hits="0" branch="false"/>
1713
- <line number="281" hits="0" branch="false"/>
2857
+ <line number="204" hits="0" branch="false"/>
2858
+ <line number="208" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2859
+ <line number="210" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2860
+ <line number="211" hits="0" branch="false"/>
2861
+ <line number="214" hits="0" branch="false"/>
2862
+ <line number="215" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2863
+ <line number="220" hits="0" branch="false"/>
2864
+ <line number="232" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2865
+ <line number="240" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2866
+ <line number="258" hits="0" branch="false"/>
2867
+ <line number="263" hits="0" branch="false"/>
2868
+ <line number="265" hits="0" branch="false"/>
2869
+ <line number="267" hits="0" branch="false"/>
2870
+ <line number="271" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2871
+ <line number="272" hits="0" branch="false"/>
2872
+ <line number="276" hits="0" branch="false"/>
2873
+ <line number="282" hits="11" branch="false"/>
2874
+ <line number="283" hits="0" branch="false"/>
1714
2875
  <line number="285" hits="0" branch="false"/>
1715
- <line number="291" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1716
- <line number="292" hits="0" branch="false"/>
2876
+ <line number="286" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2877
+ <line number="288" hits="0" branch="false"/>
2878
+ <line number="289" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2879
+ <line number="293" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2880
+ <line number="294" hits="0" branch="false"/>
1717
2881
  <line number="296" hits="0" branch="false"/>
1718
- <line number="301" hits="0" branch="false"/>
1719
- <line number="304" hits="0" branch="false"/>
1720
- <line number="306" hits="0" branch="false"/>
1721
- <line number="307" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1722
- <line number="309" hits="0" branch="false"/>
1723
- <line number="310" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1724
- <line number="315" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1725
- <line number="316" hits="0" branch="false"/>
1726
- <line number="320" hits="0" branch="false"/>
1727
- <line number="323" hits="0" branch="false"/>
1728
- <line number="334" hits="0" branch="false"/>
1729
- <line number="343" hits="0" branch="false"/>
1730
- <line number="345" hits="0" branch="false"/>
1731
- <line number="356" hits="0" branch="false"/>
1732
- <line number="360" hits="11" branch="false"/>
1733
- <line number="361" hits="11" branch="false"/>
1734
- <line number="362" hits="11" branch="false"/>
1735
- <line number="367" hits="0" branch="false"/>
1736
- <line number="368" hits="0" branch="false"/>
1737
- <line number="370" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1738
- <line number="371" hits="0" branch="false"/>
1739
- <line number="373" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1740
- <line number="375" hits="0" branch="false"/>
1741
- <line number="377" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1742
- <line number="378" hits="0" branch="false"/>
1743
- <line number="380" hits="0" branch="false"/>
1744
- <line number="383" hits="0" branch="false"/>
1745
- <line number="389" hits="11" branch="false"/>
1746
- <line number="396" hits="2" branch="false"/>
1747
- <line number="397" hits="0" branch="false"/>
1748
- <line number="398" hits="0" branch="false"/>
1749
- <line number="399" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1750
- <line number="402" hits="8" branch="false"/>
1751
- <line number="403" hits="8" branch="true" condition-coverage="0% (0/1)"/>
1752
- <line number="404" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1753
- <line number="406" hits="8" branch="false"/>
1754
- <line number="414" hits="11" branch="false"/>
1755
- <line number="416" hits="22" branch="true" condition-coverage="66.66666666666666% (2/3)"/>
1756
- <line number="417" hits="0" branch="false"/>
1757
- <line number="418" hits="0" branch="false"/>
1758
- <line number="419" hits="0" branch="false"/>
1759
- <line number="421" hits="0" branch="false"/>
2882
+ <line number="299" hits="0" branch="false"/>
2883
+ <line number="310" hits="0" branch="false"/>
2884
+ <line number="319" hits="0" branch="false"/>
2885
+ <line number="321" hits="0" branch="false"/>
2886
+ <line number="333" hits="11" branch="false"/>
2887
+ <line number="334" hits="1" branch="false"/>
2888
+ <line number="336" hits="0" branch="false"/>
2889
+ <line number="341" hits="1" branch="false"/>
2890
+ <line number="342" hits="21" branch="false"/>
2891
+ <line number="343" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2892
+ <line number="347" hits="1" branch="true" condition-coverage="100% (1/1)"/>
2893
+ <line number="348" hits="1" branch="false"/>
2894
+ <line number="350" hits="1" branch="true" condition-coverage="0% (0/1)"/>
2895
+ <line number="352" hits="0" branch="false"/>
2896
+ <line number="354" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2897
+ <line number="355" hits="0" branch="false"/>
2898
+ <line number="357" hits="1" branch="false"/>
2899
+ <line number="362" hits="2" branch="false"/>
2900
+ <line number="363" hits="1" branch="false"/>
2901
+ <line number="364" hits="4" branch="false"/>
2902
+ <line number="365" hits="1" branch="true" condition-coverage="50% (1/2)"/>
2903
+ <line number="368" hits="8" branch="false"/>
2904
+ <line number="369" hits="8" branch="true" condition-coverage="0% (0/1)"/>
2905
+ <line number="370" hits="0" branch="true" condition-coverage="0% (0/4)"/>
2906
+ <line number="372" hits="8" branch="false"/>
2907
+ <line number="375" hits="11" branch="false"/>
2908
+ <line number="376" hits="22" branch="true" condition-coverage="100% (2/2)"/>
2909
+ <line number="377" hits="1" branch="true" condition-coverage="100% (2/2)"/>
1760
2910
  </lines>
1761
2911
  </class>
1762
2912
  <class name="deviceSetup.ts" filename="src/Device/deviceSetup.ts" line-rate="0.6933" branch-rate="0.409">
@@ -2013,195 +3163,181 @@
2013
3163
  <line number="94" hits="67" branch="false"/>
2014
3164
  </lines>
2015
3165
  </class>
2016
- <class name="deviceSlice.ts" filename="src/Device/deviceSlice.ts" line-rate="0.4857" branch-rate="0.08">
3166
+ <class name="deviceSlice.ts" filename="src/Device/deviceSlice.ts" line-rate="0.5" branch-rate="0.08">
2017
3167
  <methods>
2018
- <method name="(anonymous_19)" hits="0" signature="()V">
3168
+ <method name="(anonymous_18)" hits="0" signature="()V">
2019
3169
  <lines>
2020
- <line number="35" hits="0"/>
3170
+ <line number="32" hits="0"/>
2021
3171
  </lines>
2022
3172
  </method>
2023
- <method name="(anonymous_20)" hits="9" signature="()V">
3173
+ <method name="(anonymous_19)" hits="9" signature="()V">
2024
3174
  <lines>
2025
- <line number="60" hits="9"/>
3175
+ <line number="57" hits="9"/>
2026
3176
  </lines>
2027
3177
  </method>
2028
- <method name="(anonymous_21)" hits="6" signature="()V">
3178
+ <method name="(anonymous_20)" hits="6" signature="()V">
2029
3179
  <lines>
2030
- <line number="94" hits="6"/>
3180
+ <line number="91" hits="6"/>
2031
3181
  </lines>
2032
3182
  </method>
2033
- <method name="(anonymous_22)" hits="2" signature="()V">
3183
+ <method name="(anonymous_21)" hits="2" signature="()V">
2034
3184
  <lines>
2035
- <line number="101" hits="2"/>
3185
+ <line number="98" hits="2"/>
2036
3186
  </lines>
2037
3187
  </method>
2038
- <method name="(anonymous_23)" hits="10" signature="()V">
3188
+ <method name="(anonymous_22)" hits="9" signature="()V">
2039
3189
  <lines>
2040
- <line number="107" hits="10"/>
3190
+ <line number="104" hits="9"/>
2041
3191
  </lines>
2042
3192
  </method>
2043
- <method name="(anonymous_24)" hits="9" signature="()V">
3193
+ <method name="(anonymous_23)" hits="0" signature="()V">
2044
3194
  <lines>
2045
- <line number="109" hits="9"/>
3195
+ <line number="111" hits="0"/>
2046
3196
  </lines>
2047
3197
  </method>
2048
- <method name="(anonymous_25)" hits="0" signature="()V">
3198
+ <method name="(anonymous_24)" hits="0" signature="()V">
3199
+ <lines>
3200
+ <line number="123" hits="0"/>
3201
+ </lines>
3202
+ </method>
3203
+ <method name="(anonymous_25)" hits="1" signature="()V">
2049
3204
  <lines>
2050
- <line number="117" hits="0"/>
3205
+ <line number="146" hits="1"/>
2051
3206
  </lines>
2052
3207
  </method>
2053
3208
  <method name="(anonymous_26)" hits="0" signature="()V">
2054
3209
  <lines>
2055
- <line number="124" hits="0"/>
3210
+ <line number="155" hits="0"/>
2056
3211
  </lines>
2057
3212
  </method>
2058
3213
  <method name="(anonymous_27)" hits="0" signature="()V">
2059
3214
  <lines>
2060
- <line number="136" hits="0"/>
3215
+ <line number="165" hits="0"/>
2061
3216
  </lines>
2062
3217
  </method>
2063
3218
  <method name="(anonymous_28)" hits="0" signature="()V">
2064
3219
  <lines>
2065
- <line number="159" hits="0"/>
3220
+ <line number="168" hits="0"/>
2066
3221
  </lines>
2067
3222
  </method>
2068
3223
  <method name="(anonymous_29)" hits="0" signature="()V">
2069
3224
  <lines>
2070
- <line number="168" hits="0"/>
3225
+ <line number="185" hits="0"/>
2071
3226
  </lines>
2072
3227
  </method>
2073
3228
  <method name="(anonymous_30)" hits="0" signature="()V">
2074
3229
  <lines>
2075
- <line number="178" hits="0"/>
2076
- </lines>
2077
- </method>
2078
- <method name="(anonymous_31)" hits="0" signature="()V">
2079
- <lines>
2080
- <line number="181" hits="0"/>
2081
- </lines>
2082
- </method>
2083
- <method name="(anonymous_32)" hits="0" signature="()V">
2084
- <lines>
2085
- <line number="198" hits="0"/>
3230
+ <line number="192" hits="0"/>
2086
3231
  </lines>
2087
3232
  </method>
2088
- <method name="(anonymous_33)" hits="2" signature="()V">
2089
- <lines>
2090
- <line number="205" hits="2"/>
2091
- </lines>
2092
- </method>
2093
- <method name="(anonymous_34)" hits="0" signature="()V">
3233
+ <method name="(anonymous_31)" hits="0" signature="()V">
2094
3234
  <lines>
2095
- <line number="230" hits="0"/>
3235
+ <line number="216" hits="0"/>
2096
3236
  </lines>
2097
3237
  </method>
2098
- <method name="(anonymous_35)" hits="0" signature="()V">
3238
+ <method name="(anonymous_32)" hits="0" signature="()V">
2099
3239
  <lines>
2100
- <line number="230" hits="0"/>
3240
+ <line number="216" hits="0"/>
2101
3241
  </lines>
2102
3242
  </method>
2103
- <method name="(anonymous_36)" hits="87" signature="()V">
3243
+ <method name="(anonymous_33)" hits="87" signature="()V">
2104
3244
  <lines>
2105
- <line number="233" hits="87"/>
3245
+ <line number="219" hits="87"/>
2106
3246
  </lines>
2107
3247
  </method>
2108
- <method name="(anonymous_37)" hits="75" signature="()V">
3248
+ <method name="(anonymous_34)" hits="75" signature="()V">
2109
3249
  <lines>
2110
- <line number="235" hits="75"/>
3250
+ <line number="221" hits="75"/>
2111
3251
  </lines>
2112
3252
  </method>
2113
- <method name="(anonymous_38)" hits="31" signature="()V">
3253
+ <method name="(anonymous_35)" hits="31" signature="()V">
2114
3254
  <lines>
2115
- <line number="238" hits="31"/>
3255
+ <line number="224" hits="31"/>
2116
3256
  </lines>
2117
3257
  </method>
2118
- <method name="(anonymous_39)" hits="10" signature="()V">
3258
+ <method name="(anonymous_36)" hits="10" signature="()V">
2119
3259
  <lines>
2120
- <line number="243" hits="10"/>
3260
+ <line number="229" hits="10"/>
2121
3261
  </lines>
2122
3262
  </method>
2123
- <method name="(anonymous_40)" hits="85" signature="()V">
3263
+ <method name="(anonymous_37)" hits="85" signature="()V">
2124
3264
  <lines>
2125
- <line number="244" hits="85"/>
3265
+ <line number="230" hits="85"/>
2126
3266
  </lines>
2127
3267
  </method>
2128
- <method name="(anonymous_41)" hits="0" signature="()V">
3268
+ <method name="(anonymous_38)" hits="0" signature="()V">
2129
3269
  <lines>
2130
- <line number="247" hits="0"/>
3270
+ <line number="233" hits="0"/>
2131
3271
  </lines>
2132
3272
  </method>
2133
3273
  </methods>
2134
3274
  <lines>
2135
- <line number="11" hits="10" branch="false"/>
2136
- <line number="23" hits="10" branch="false"/>
2137
- <line number="35" hits="10" branch="false"/>
2138
- <line number="40" hits="0" branch="false"/>
2139
- <line number="41" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2140
- <line number="42" hits="0" branch="false"/>
2141
- <line number="53" hits="10" branch="false"/>
2142
- <line number="60" hits="10" branch="false"/>
2143
- <line number="61" hits="9" branch="false"/>
2144
- <line number="67" hits="9" branch="false"/>
2145
- <line number="71" hits="9" branch="true" condition-coverage="0% (0/1)"/>
2146
- <line number="73" hits="0" branch="true" condition-coverage="0% (0/6)"/>
2147
- <line number="76" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2148
- <line number="77" hits="0" branch="false"/>
2149
- <line number="84" hits="9" branch="false"/>
2150
- <line number="87" hits="10" branch="false"/>
2151
- <line number="95" hits="6" branch="false"/>
2152
- <line number="102" hits="2" branch="false"/>
2153
- <line number="103" hits="2" branch="false"/>
2154
- <line number="104" hits="2" branch="false"/>
2155
- <line number="108" hits="10" branch="false"/>
2156
- <line number="109" hits="10" branch="false"/>
2157
- <line number="110" hits="9" branch="false"/>
2158
- <line number="118" hits="0" branch="false"/>
2159
- <line number="128" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3275
+ <line number="7" hits="10" branch="false"/>
3276
+ <line number="20" hits="10" branch="false"/>
3277
+ <line number="32" hits="10" branch="false"/>
3278
+ <line number="37" hits="0" branch="false"/>
3279
+ <line number="38" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3280
+ <line number="39" hits="0" branch="false"/>
3281
+ <line number="50" hits="10" branch="false"/>
3282
+ <line number="57" hits="10" branch="false"/>
3283
+ <line number="58" hits="9" branch="false"/>
3284
+ <line number="64" hits="9" branch="false"/>
3285
+ <line number="68" hits="9" branch="true" condition-coverage="0% (0/1)"/>
3286
+ <line number="70" hits="0" branch="true" condition-coverage="0% (0/6)"/>
3287
+ <line number="73" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3288
+ <line number="74" hits="0" branch="false"/>
3289
+ <line number="81" hits="9" branch="false"/>
3290
+ <line number="84" hits="10" branch="false"/>
3291
+ <line number="92" hits="6" branch="false"/>
3292
+ <line number="99" hits="2" branch="false"/>
3293
+ <line number="100" hits="2" branch="false"/>
3294
+ <line number="101" hits="2" branch="false"/>
3295
+ <line number="105" hits="9" branch="false"/>
3296
+ <line number="115" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3297
+ <line number="117" hits="0" branch="false"/>
3298
+ <line number="121" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3299
+ <line number="122" hits="0" branch="true" condition-coverage="0% (0/4)"/>
3300
+ <line number="123" hits="0" branch="false"/>
3301
+ <line number="126" hits="0" branch="true" condition-coverage="0% (0/3)"/>
3302
+ <line number="128" hits="0" branch="false"/>
2160
3303
  <line number="130" hits="0" branch="false"/>
2161
- <line number="134" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2162
- <line number="135" hits="0" branch="true" condition-coverage="0% (0/4)"/>
2163
- <line number="136" hits="0" branch="false"/>
2164
- <line number="139" hits="0" branch="true" condition-coverage="0% (0/3)"/>
2165
- <line number="141" hits="0" branch="false"/>
2166
- <line number="143" hits="0" branch="false"/>
3304
+ <line number="138" hits="0" branch="false"/>
3305
+ <line number="147" hits="1" branch="false"/>
3306
+ <line number="149" hits="1" branch="true" condition-coverage="0% (0/1)"/>
3307
+ <line number="150" hits="0" branch="false"/>
2167
3308
  <line number="151" hits="0" branch="false"/>
2168
- <line number="160" hits="0" branch="false"/>
2169
- <line number="162" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2170
- <line number="163" hits="0" branch="false"/>
2171
- <line number="164" hits="0" branch="false"/>
2172
- <line number="169" hits="0" branch="true" condition-coverage="0% (0/4)"/>
2173
- <line number="171" hits="0" branch="false"/>
2174
- <line number="172" hits="0" branch="false"/>
2175
- <line number="178" hits="0" branch="false"/>
2176
- <line number="188" hits="0" branch="false"/>
2177
- <line number="192" hits="0" branch="false"/>
2178
- <line number="199" hits="0" branch="false"/>
2179
- <line number="200" hits="0" branch="false"/>
2180
- <line number="209" hits="2" branch="false"/>
2181
- <line number="215" hits="49" branch="false"/>
2182
- <line number="217" hits="2" branch="false"/>
2183
- <line number="218" hits="0" branch="false"/>
2184
- <line number="219" hits="6" branch="false"/>
2185
- <line number="220" hits="0" branch="false"/>
2186
- <line number="221" hits="0" branch="false"/>
2187
- <line number="222" hits="10" branch="false"/>
2188
- <line number="223" hits="0" branch="false"/>
2189
- <line number="224" hits="0" branch="false"/>
2190
- <line number="225" hits="2" branch="false"/>
2191
- <line number="226" hits="0" branch="false"/>
2192
- <line number="228" hits="10" branch="false"/>
2193
- <line number="230" hits="10" branch="false"/>
2194
- <line number="231" hits="0" branch="false"/>
2195
- <line number="233" hits="87" branch="false"/>
2196
- <line number="235" hits="27" branch="false"/>
2197
- <line number="236" hits="75" branch="false"/>
2198
- <line number="238" hits="10" branch="false"/>
2199
- <line number="239" hits="31" branch="true" condition-coverage="100% (2/2)"/>
2200
- <line number="243" hits="10" branch="false"/>
2201
- <line number="244" hits="28" branch="false"/>
2202
- <line number="245" hits="85" branch="false"/>
2203
- <line number="247" hits="10" branch="false"/>
2204
- <line number="248" hits="0" branch="false"/>
3309
+ <line number="156" hits="0" branch="true" condition-coverage="0% (0/4)"/>
3310
+ <line number="158" hits="0" branch="false"/>
3311
+ <line number="159" hits="0" branch="false"/>
3312
+ <line number="165" hits="0" branch="false"/>
3313
+ <line number="175" hits="0" branch="false"/>
3314
+ <line number="179" hits="0" branch="false"/>
3315
+ <line number="186" hits="0" branch="false"/>
3316
+ <line number="187" hits="0" branch="false"/>
3317
+ <line number="196" hits="0" branch="false"/>
3318
+ <line number="202" hits="49" branch="false"/>
3319
+ <line number="204" hits="2" branch="false"/>
3320
+ <line number="205" hits="0" branch="false"/>
3321
+ <line number="206" hits="6" branch="false"/>
3322
+ <line number="207" hits="9" branch="false"/>
3323
+ <line number="208" hits="1" branch="false"/>
3324
+ <line number="209" hits="0" branch="false"/>
3325
+ <line number="210" hits="0" branch="false"/>
3326
+ <line number="211" hits="0" branch="false"/>
3327
+ <line number="212" hits="0" branch="false"/>
3328
+ <line number="214" hits="10" branch="false"/>
3329
+ <line number="216" hits="10" branch="false"/>
3330
+ <line number="217" hits="0" branch="false"/>
3331
+ <line number="219" hits="87" branch="false"/>
3332
+ <line number="221" hits="27" branch="false"/>
3333
+ <line number="222" hits="75" branch="false"/>
3334
+ <line number="224" hits="10" branch="false"/>
3335
+ <line number="225" hits="31" branch="true" condition-coverage="100% (2/2)"/>
3336
+ <line number="229" hits="10" branch="false"/>
3337
+ <line number="230" hits="28" branch="false"/>
3338
+ <line number="231" hits="85" branch="false"/>
3339
+ <line number="233" hits="10" branch="false"/>
3340
+ <line number="234" hits="0" branch="false"/>
2205
3341
  </lines>
2206
3342
  </class>
2207
3343
  <class name="dfu-cc.ts" filename="src/Device/dfu-cc.ts" line-rate="1" branch-rate="1">
@@ -2371,193 +3507,160 @@
2371
3507
  <line number="401" hits="0" branch="false"/>
2372
3508
  </lines>
2373
3509
  </class>
2374
- <class name="jprogOperations.ts" filename="src/Device/jprogOperations.ts" line-rate="0.4428" branch-rate="0.47609999999999997">
3510
+ <class name="jprogOperations.ts" filename="src/Device/jprogOperations.ts" line-rate="0.2807" branch-rate="0.48710000000000003">
2375
3511
  <methods>
2376
3512
  <method name="(anonymous_2)" hits="0" signature="()V">
2377
3513
  <lines>
2378
- <line number="22" hits="0"/>
3514
+ <line number="14" hits="0"/>
2379
3515
  </lines>
2380
3516
  </method>
2381
3517
  <method name="(anonymous_3)" hits="0" signature="()V">
2382
3518
  <lines>
2383
- <line number="33" hits="0"/>
3519
+ <line number="45" hits="0"/>
2384
3520
  </lines>
2385
3521
  </method>
2386
3522
  <method name="(anonymous_4)" hits="0" signature="()V">
2387
3523
  <lines>
2388
- <line number="41" hits="0"/>
3524
+ <line number="50" hits="0"/>
2389
3525
  </lines>
2390
3526
  </method>
2391
3527
  <method name="(anonymous_5)" hits="0" signature="()V">
2392
- <lines>
2393
- <line number="46" hits="0"/>
2394
- </lines>
2395
- </method>
2396
- <method name="(anonymous_6)" hits="0" signature="()V">
2397
3528
  <lines>
2398
3529
  <line number="64" hits="0"/>
2399
3530
  </lines>
2400
3531
  </method>
2401
3532
  <method name="(anonymous_7)" hits="2" signature="()V">
2402
3533
  <lines>
2403
- <line number="68" hits="2"/>
2404
- </lines>
2405
- </method>
2406
- <method name="(anonymous_8)" hits="0" signature="()V">
2407
- <lines>
2408
- <line number="99" hits="0"/>
2409
- </lines>
2410
- </method>
2411
- <method name="(anonymous_9)" hits="0" signature="()V">
2412
- <lines>
2413
- <line number="104" hits="0"/>
3534
+ <line number="92" hits="2"/>
2414
3535
  </lines>
2415
3536
  </method>
2416
- <method name="(anonymous_11)" hits="6" signature="()V">
2417
- <lines>
2418
- <line number="140" hits="6"/>
2419
- </lines>
2420
- </method>
2421
- <method name="(anonymous_12)" hits="3" signature="()V">
3537
+ <method name="(anonymous_8)" hits="2" signature="()V">
2422
3538
  <lines>
2423
- <line number="155" hits="3"/>
3539
+ <line number="107" hits="2"/>
2424
3540
  </lines>
2425
3541
  </method>
2426
- <method name="(anonymous_13)" hits="4" signature="()V">
3542
+ <method name="(anonymous_9)" hits="2" signature="()V">
2427
3543
  <lines>
2428
- <line number="159" hits="4"/>
3544
+ <line number="111" hits="2"/>
2429
3545
  </lines>
2430
3546
  </method>
2431
- <method name="(anonymous_14)" hits="4" signature="()V">
3547
+ <method name="(anonymous_10)" hits="2" signature="()V">
2432
3548
  <lines>
2433
- <line number="162" hits="4"/>
3549
+ <line number="114" hits="2"/>
2434
3550
  </lines>
2435
3551
  </method>
2436
- <method name="(anonymous_15)" hits="2" signature="()V">
3552
+ <method name="(anonymous_11)" hits="0" signature="()V">
2437
3553
  <lines>
2438
- <line number="163" hits="2"/>
3554
+ <line number="115" hits="0"/>
2439
3555
  </lines>
2440
3556
  </method>
2441
- <method name="(anonymous_16)" hits="0" signature="()V">
3557
+ <method name="(anonymous_12)" hits="0" signature="()V">
2442
3558
  <lines>
2443
- <line number="166" hits="0"/>
3559
+ <line number="118" hits="0"/>
2444
3560
  </lines>
2445
3561
  </method>
2446
- <method name="(anonymous_17)" hits="0" signature="()V">
3562
+ <method name="(anonymous_13)" hits="0" signature="()V">
2447
3563
  <lines>
2448
- <line number="166" hits="0"/>
3564
+ <line number="118" hits="0"/>
2449
3565
  </lines>
2450
3566
  </method>
2451
- <method name="(anonymous_18)" hits="2" signature="()V">
3567
+ <method name="(anonymous_14)" hits="0" signature="()V">
2452
3568
  <lines>
2453
- <line number="171" hits="2"/>
3569
+ <line number="123" hits="0"/>
2454
3570
  </lines>
2455
3571
  </method>
2456
- <method name="(anonymous_19)" hits="2" signature="()V">
3572
+ <method name="(anonymous_15)" hits="0" signature="()V">
2457
3573
  <lines>
2458
- <line number="171" hits="2"/>
3574
+ <line number="123" hits="0"/>
2459
3575
  </lines>
2460
3576
  </method>
2461
- <method name="(anonymous_20)" hits="2" signature="()V">
3577
+ <method name="(anonymous_16)" hits="0" signature="()V">
2462
3578
  <lines>
2463
- <line number="181" hits="2"/>
3579
+ <line number="133" hits="0"/>
2464
3580
  </lines>
2465
3581
  </method>
2466
- <method name="(anonymous_21)" hits="0" signature="()V">
3582
+ <method name="(anonymous_17)" hits="0" signature="()V">
2467
3583
  <lines>
2468
- <line number="184" hits="0"/>
3584
+ <line number="136" hits="0"/>
2469
3585
  </lines>
2470
3586
  </method>
2471
- <method name="(anonymous_22)" hits="0" signature="()V">
3587
+ <method name="(anonymous_18)" hits="0" signature="()V">
2472
3588
  <lines>
2473
- <line number="186" hits="0"/>
3589
+ <line number="138" hits="0"/>
2474
3590
  </lines>
2475
3591
  </method>
2476
- <method name="(anonymous_23)" hits="1" signature="()V">
3592
+ <method name="(anonymous_19)" hits="0" signature="()V">
2477
3593
  <lines>
2478
- <line number="205" hits="1"/>
3594
+ <line number="157" hits="0"/>
2479
3595
  </lines>
2480
3596
  </method>
2481
- <method name="(anonymous_24)" hits="1" signature="()V">
3597
+ <method name="(anonymous_20)" hits="0" signature="()V">
2482
3598
  <lines>
2483
- <line number="205" hits="1"/>
3599
+ <line number="157" hits="0"/>
2484
3600
  </lines>
2485
3601
  </method>
2486
3602
  </methods>
2487
3603
  <lines>
3604
+ <line number="7" hits="1" branch="false"/>
3605
+ <line number="9" hits="1" branch="false"/>
3606
+ <line number="12" hits="1" branch="false"/>
2488
3607
  <line number="14" hits="1" branch="false"/>
2489
- <line number="16" hits="1" branch="false"/>
2490
- <line number="18" hits="1" branch="false"/>
2491
- <line number="20" hits="1" branch="false"/>
2492
- <line number="22" hits="1" branch="false"/>
2493
- <line number="28" hits="0" branch="true" condition-coverage="0% (0/2)"/>
3608
+ <line number="20" hits="0" branch="false"/>
3609
+ <line number="21" hits="0" branch="false"/>
3610
+ <line number="22" hits="0" branch="false"/>
3611
+ <line number="28" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2494
3612
  <line number="29" hits="0" branch="false"/>
2495
- <line number="31" hits="0" branch="false"/>
2496
- <line number="33" hits="0" branch="false"/>
2497
- <line number="34" hits="0" branch="false"/>
2498
- <line number="35" hits="0" branch="false"/>
2499
- <line number="42" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2500
- <line number="43" hits="0" branch="false"/>
2501
- <line number="44" hits="0" branch="false"/>
2502
- <line number="47" hits="0" branch="false"/>
2503
- <line number="64" hits="1" branch="false"/>
3613
+ <line number="32" hits="0" branch="false"/>
3614
+ <line number="37" hits="0" branch="false"/>
3615
+ <line number="45" hits="1" branch="false"/>
3616
+ <line number="50" hits="0" branch="false"/>
3617
+ <line number="51" hits="0" branch="false"/>
3618
+ <line number="52" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3619
+ <line number="53" hits="0" branch="false"/>
3620
+ <line number="54" hits="0" branch="false"/>
3621
+ <line number="55" hits="0" branch="false"/>
3622
+ <line number="58" hits="0" branch="false"/>
3623
+ <line number="61" hits="0" branch="false"/>
2504
3624
  <line number="65" hits="0" branch="false"/>
2505
- <line number="68" hits="1" branch="false"/>
2506
- <line number="74" hits="2" branch="false"/>
2507
- <line number="75" hits="2" branch="false"/>
2508
- <line number="76" hits="0" branch="false"/>
2509
- <line number="82" hits="2" branch="true" condition-coverage="0% (0/1)"/>
3625
+ <line number="72" hits="0" branch="false"/>
3626
+ <line number="73" hits="0" branch="false"/>
3627
+ <line number="74" hits="0" branch="false"/>
3628
+ <line number="75" hits="0" branch="false"/>
3629
+ <line number="78" hits="0" branch="false"/>
3630
+ <line number="79" hits="0" branch="false"/>
3631
+ <line number="81" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3632
+ <line number="82" hits="0" branch="false"/>
2510
3633
  <line number="83" hits="0" branch="false"/>
2511
- <line number="86" hits="0" branch="false"/>
2512
- <line number="91" hits="2" branch="false"/>
2513
- <line number="99" hits="1" branch="false"/>
2514
- <line number="104" hits="0" branch="false"/>
2515
- <line number="105" hits="0" branch="false"/>
2516
- <line number="106" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2517
- <line number="107" hits="0" branch="false"/>
2518
- <line number="108" hits="0" branch="false"/>
2519
- <line number="109" hits="0" branch="false"/>
2520
- <line number="116" hits="0" branch="false"/>
3634
+ <line number="88" hits="0" branch="false"/>
3635
+ <line number="92" hits="2" branch="false"/>
3636
+ <line number="93" hits="2" branch="true" condition-coverage="66.66666666666666% (4/6)"/>
3637
+ <line number="94" hits="2" branch="true" condition-coverage="66.66666666666666% (4/6)"/>
3638
+ <line number="95" hits="2" branch="false"/>
3639
+ <line number="96" hits="2" branch="true" condition-coverage="66.66666666666666% (4/6)"/>
3640
+ <line number="98" hits="2" branch="false"/>
3641
+ <line number="99" hits="2" branch="false"/>
3642
+ <line number="107" hits="2" branch="false"/>
3643
+ <line number="110" hits="2" branch="false"/>
3644
+ <line number="112" hits="2" branch="true" condition-coverage="66.66666666666666% (2/3)"/>
3645
+ <line number="115" hits="2" branch="false"/>
3646
+ <line number="118" hits="0" branch="false"/>
2521
3647
  <line number="119" hits="0" branch="false"/>
2522
- <line number="120" hits="0" branch="false"/>
2523
- <line number="121" hits="0" branch="false"/>
2524
- <line number="122" hits="0" branch="false"/>
2525
3648
  <line number="123" hits="0" branch="false"/>
3649
+ <line number="124" hits="0" branch="false"/>
3650
+ <line number="125" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2526
3651
  <line number="126" hits="0" branch="false"/>
2527
- <line number="127" hits="0" branch="false"/>
2528
- <line number="129" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2529
- <line number="130" hits="0" branch="false"/>
2530
- <line number="131" hits="0" branch="false"/>
3652
+ <line number="132" hits="0" branch="false"/>
3653
+ <line number="134" hits="0" branch="false"/>
3654
+ <line number="135" hits="0" branch="true" condition-coverage="0% (0/3)"/>
2531
3655
  <line number="136" hits="0" branch="false"/>
2532
- <line number="140" hits="6" branch="false"/>
2533
- <line number="141" hits="6" branch="true" condition-coverage="66.66666666666666% (4/6)"/>
2534
- <line number="142" hits="6" branch="true" condition-coverage="66.66666666666666% (4/6)"/>
2535
- <line number="143" hits="6" branch="false"/>
2536
- <line number="144" hits="6" branch="true" condition-coverage="66.66666666666666% (4/6)"/>
2537
- <line number="146" hits="6" branch="false"/>
2538
- <line number="147" hits="6" branch="false"/>
2539
- <line number="155" hits="3" branch="false"/>
2540
- <line number="158" hits="3" branch="false"/>
2541
- <line number="160" hits="4" branch="true" condition-coverage="66.66666666666666% (2/3)"/>
2542
- <line number="163" hits="4" branch="false"/>
2543
- <line number="166" hits="0" branch="false"/>
2544
- <line number="167" hits="0" branch="false"/>
2545
- <line number="171" hits="2" branch="false"/>
2546
- <line number="172" hits="2" branch="false"/>
2547
- <line number="173" hits="2" branch="true" condition-coverage="0% (0/1)"/>
2548
- <line number="174" hits="0" branch="false"/>
2549
- <line number="180" hits="2" branch="false"/>
2550
- <line number="182" hits="2" branch="false"/>
2551
- <line number="183" hits="2" branch="true" condition-coverage="33.33333333333333% (1/3)"/>
2552
- <line number="184" hits="0" branch="false"/>
2553
- <line number="185" hits="0" branch="false"/>
2554
- <line number="187" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2555
- <line number="192" hits="0" branch="false"/>
2556
- <line number="198" hits="2" branch="false"/>
2557
- <line number="205" hits="1" branch="false"/>
3656
+ <line number="137" hits="0" branch="false"/>
3657
+ <line number="139" hits="0" branch="true" condition-coverage="0% (0/2)"/>
3658
+ <line number="144" hits="0" branch="false"/>
3659
+ <line number="150" hits="0" branch="false"/>
3660
+ <line number="157" hits="0" branch="false"/>
2558
3661
  </lines>
2559
3662
  </class>
2560
- <class name="sdfuOperations.ts" filename="src/Device/sdfuOperations.ts" line-rate="0.1648" branch-rate="0">
3663
+ <class name="sdfuOperations.ts" filename="src/Device/sdfuOperations.ts" line-rate="0.1595" branch-rate="0">
2561
3664
  <methods>
2562
3665
  <method name="(anonymous_8)" hits="0" signature="()V">
2563
3666
  <lines>
@@ -2576,27 +3679,27 @@
2576
3679
  </method>
2577
3680
  <method name="(anonymous_11)" hits="0" signature="()V">
2578
3681
  <lines>
2579
- <line number="72" hits="0"/>
3682
+ <line number="69" hits="0"/>
2580
3683
  </lines>
2581
3684
  </method>
2582
3685
  <method name="(anonymous_12)" hits="0" signature="()V">
2583
3686
  <lines>
2584
- <line number="85" hits="0"/>
3687
+ <line number="82" hits="0"/>
2585
3688
  </lines>
2586
3689
  </method>
2587
3690
  <method name="(anonymous_13)" hits="0" signature="()V">
2588
3691
  <lines>
2589
- <line number="91" hits="0"/>
3692
+ <line number="88" hits="0"/>
2590
3693
  </lines>
2591
3694
  </method>
2592
3695
  <method name="(anonymous_14)" hits="0" signature="()V">
2593
3696
  <lines>
2594
- <line number="115" hits="0"/>
3697
+ <line number="111" hits="0"/>
2595
3698
  </lines>
2596
3699
  </method>
2597
3700
  <method name="(anonymous_15)" hits="0" signature="()V">
2598
3701
  <lines>
2599
- <line number="141" hits="0"/>
3702
+ <line number="145" hits="0"/>
2600
3703
  </lines>
2601
3704
  </method>
2602
3705
  <method name="(anonymous_16)" hits="0" signature="()V">
@@ -2606,227 +3709,222 @@
2606
3709
  </method>
2607
3710
  <method name="(anonymous_17)" hits="0" signature="()V">
2608
3711
  <lines>
2609
- <line number="157" hits="0"/>
3712
+ <line number="164" hits="0"/>
2610
3713
  </lines>
2611
3714
  </method>
2612
3715
  <method name="(anonymous_18)" hits="0" signature="()V">
2613
3716
  <lines>
2614
- <line number="164" hits="0"/>
3717
+ <line number="170" hits="0"/>
2615
3718
  </lines>
2616
3719
  </method>
2617
3720
  <method name="(anonymous_19)" hits="0" signature="()V">
2618
3721
  <lines>
2619
- <line number="178" hits="0"/>
3722
+ <line number="175" hits="0"/>
2620
3723
  </lines>
2621
3724
  </method>
2622
3725
  <method name="(anonymous_20)" hits="0" signature="()V">
2623
3726
  <lines>
2624
- <line number="182" hits="0"/>
3727
+ <line number="181" hits="0"/>
2625
3728
  </lines>
2626
3729
  </method>
2627
3730
  <method name="(anonymous_21)" hits="0" signature="()V">
2628
3731
  <lines>
2629
- <line number="187" hits="0"/>
3732
+ <line number="197" hits="0"/>
2630
3733
  </lines>
2631
3734
  </method>
2632
3735
  <method name="(anonymous_22)" hits="0" signature="()V">
2633
3736
  <lines>
2634
- <line number="193" hits="0"/>
3737
+ <line number="202" hits="0"/>
2635
3738
  </lines>
2636
3739
  </method>
2637
3740
  <method name="(anonymous_23)" hits="0" signature="()V">
2638
3741
  <lines>
2639
- <line number="209" hits="0"/>
3742
+ <line number="208" hits="0"/>
2640
3743
  </lines>
2641
3744
  </method>
2642
3745
  <method name="(anonymous_24)" hits="0" signature="()V">
2643
3746
  <lines>
2644
- <line number="214" hits="0"/>
3747
+ <line number="225" hits="0"/>
2645
3748
  </lines>
2646
3749
  </method>
2647
3750
  <method name="(anonymous_25)" hits="0" signature="()V">
2648
3751
  <lines>
2649
- <line number="220" hits="0"/>
3752
+ <line number="245" hits="0"/>
2650
3753
  </lines>
2651
3754
  </method>
2652
3755
  <method name="(anonymous_26)" hits="0" signature="()V">
2653
3756
  <lines>
2654
- <line number="237" hits="0"/>
3757
+ <line number="251" hits="0"/>
2655
3758
  </lines>
2656
3759
  </method>
2657
3760
  <method name="(anonymous_27)" hits="0" signature="()V">
2658
3761
  <lines>
2659
- <line number="257" hits="0"/>
3762
+ <line number="255" hits="0"/>
2660
3763
  </lines>
2661
3764
  </method>
2662
3765
  <method name="(anonymous_28)" hits="0" signature="()V">
2663
3766
  <lines>
2664
- <line number="263" hits="0"/>
3767
+ <line number="259" hits="0"/>
2665
3768
  </lines>
2666
3769
  </method>
2667
3770
  <method name="(anonymous_29)" hits="0" signature="()V">
2668
3771
  <lines>
2669
- <line number="267" hits="0"/>
3772
+ <line number="266" hits="0"/>
2670
3773
  </lines>
2671
3774
  </method>
2672
- <method name="(anonymous_30)" hits="0" signature="()V">
3775
+ <method name="parseFirmwareImage" hits="0" signature="()V">
2673
3776
  <lines>
2674
- <line number="271" hits="0"/>
3777
+ <line number="304" hits="0"/>
2675
3778
  </lines>
2676
3779
  </method>
2677
3780
  <method name="(anonymous_31)" hits="0" signature="()V">
2678
3781
  <lines>
2679
- <line number="278" hits="0"/>
3782
+ <line number="311" hits="0"/>
2680
3783
  </lines>
2681
3784
  </method>
2682
- <method name="parseFirmwareImage" hits="0" signature="()V">
3785
+ <method name="calculateSHA256Hash" hits="0" signature="()V">
2683
3786
  <lines>
2684
- <line number="316" hits="0"/>
3787
+ <line number="321" hits="0"/>
2685
3788
  </lines>
2686
3789
  </method>
2687
3790
  <method name="(anonymous_33)" hits="0" signature="()V">
2688
3791
  <lines>
2689
- <line number="323" hits="0"/>
3792
+ <line number="333" hits="0"/>
2690
3793
  </lines>
2691
3794
  </method>
2692
- <method name="calculateSHA256Hash" hits="0" signature="()V">
3795
+ <method name="(anonymous_34)" hits="0" signature="()V">
2693
3796
  <lines>
2694
- <line number="333" hits="0"/>
3797
+ <line number="334" hits="0"/>
2695
3798
  </lines>
2696
3799
  </method>
2697
3800
  <method name="(anonymous_35)" hits="0" signature="()V">
2698
3801
  <lines>
2699
- <line number="345" hits="0"/>
3802
+ <line number="352" hits="0"/>
2700
3803
  </lines>
2701
3804
  </method>
2702
3805
  <method name="(anonymous_36)" hits="0" signature="()V">
2703
3806
  <lines>
2704
- <line number="346" hits="0"/>
3807
+ <line number="353" hits="0"/>
2705
3808
  </lines>
2706
3809
  </method>
2707
3810
  <method name="(anonymous_37)" hits="0" signature="()V">
2708
3811
  <lines>
2709
- <line number="364" hits="0"/>
3812
+ <line number="366" hits="0"/>
2710
3813
  </lines>
2711
3814
  </method>
2712
3815
  <method name="(anonymous_38)" hits="0" signature="()V">
2713
3816
  <lines>
2714
- <line number="365" hits="0"/>
3817
+ <line number="367" hits="0"/>
2715
3818
  </lines>
2716
3819
  </method>
2717
3820
  <method name="(anonymous_39)" hits="0" signature="()V">
2718
3821
  <lines>
2719
- <line number="378" hits="0"/>
3822
+ <line number="397" hits="0"/>
2720
3823
  </lines>
2721
3824
  </method>
2722
- <method name="(anonymous_40)" hits="0" signature="()V">
3825
+ <method name="(anonymous_41)" hits="0" signature="()V">
2723
3826
  <lines>
2724
- <line number="379" hits="0"/>
3827
+ <line number="411" hits="0"/>
2725
3828
  </lines>
2726
3829
  </method>
2727
- <method name="(anonymous_41)" hits="0" signature="()V">
3830
+ <method name="(anonymous_42)" hits="0" signature="()V">
2728
3831
  <lines>
2729
- <line number="409" hits="0"/>
3832
+ <line number="482" hits="0"/>
2730
3833
  </lines>
2731
3834
  </method>
2732
3835
  <method name="(anonymous_43)" hits="0" signature="()V">
2733
3836
  <lines>
2734
- <line number="423" hits="0"/>
3837
+ <line number="486" hits="0"/>
2735
3838
  </lines>
2736
3839
  </method>
2737
3840
  <method name="(anonymous_44)" hits="0" signature="()V">
2738
3841
  <lines>
2739
- <line number="496" hits="0"/>
3842
+ <line number="502" hits="0"/>
2740
3843
  </lines>
2741
3844
  </method>
2742
3845
  <method name="(anonymous_45)" hits="0" signature="()V">
2743
3846
  <lines>
2744
- <line number="521" hits="0"/>
3847
+ <line number="515" hits="0"/>
2745
3848
  </lines>
2746
3849
  </method>
2747
3850
  <method name="(anonymous_46)" hits="0" signature="()V">
2748
3851
  <lines>
2749
- <line number="531" hits="0"/>
3852
+ <line number="520" hits="0"/>
2750
3853
  </lines>
2751
3854
  </method>
2752
3855
  <method name="(anonymous_47)" hits="0" signature="()V">
2753
3856
  <lines>
2754
- <line number="536" hits="0"/>
3857
+ <line number="521" hits="0"/>
2755
3858
  </lines>
2756
3859
  </method>
2757
3860
  <method name="(anonymous_48)" hits="0" signature="()V">
2758
3861
  <lines>
2759
- <line number="537" hits="0"/>
3862
+ <line number="522" hits="0"/>
2760
3863
  </lines>
2761
3864
  </method>
2762
3865
  <method name="(anonymous_49)" hits="0" signature="()V">
2763
3866
  <lines>
2764
- <line number="538" hits="0"/>
3867
+ <line number="540" hits="0"/>
2765
3868
  </lines>
2766
3869
  </method>
2767
3870
  <method name="(anonymous_50)" hits="0" signature="()V">
2768
3871
  <lines>
2769
- <line number="556" hits="0"/>
3872
+ <line number="544" hits="0"/>
2770
3873
  </lines>
2771
3874
  </method>
2772
3875
  <method name="(anonymous_51)" hits="0" signature="()V">
2773
3876
  <lines>
2774
- <line number="560" hits="0"/>
3877
+ <line number="549" hits="0"/>
2775
3878
  </lines>
2776
3879
  </method>
2777
3880
  <method name="(anonymous_52)" hits="0" signature="()V">
2778
3881
  <lines>
2779
- <line number="565" hits="0"/>
3882
+ <line number="550" hits="0"/>
2780
3883
  </lines>
2781
3884
  </method>
2782
3885
  <method name="(anonymous_53)" hits="0" signature="()V">
2783
3886
  <lines>
2784
- <line number="566" hits="0"/>
3887
+ <line number="553" hits="0"/>
2785
3888
  </lines>
2786
3889
  </method>
2787
3890
  <method name="(anonymous_54)" hits="0" signature="()V">
2788
3891
  <lines>
2789
- <line number="569" hits="0"/>
3892
+ <line number="553" hits="0"/>
2790
3893
  </lines>
2791
3894
  </method>
2792
3895
  <method name="(anonymous_55)" hits="0" signature="()V">
2793
3896
  <lines>
2794
- <line number="569" hits="0"/>
3897
+ <line number="558" hits="0"/>
2795
3898
  </lines>
2796
3899
  </method>
2797
3900
  <method name="(anonymous_56)" hits="0" signature="()V">
2798
3901
  <lines>
2799
- <line number="574" hits="0"/>
3902
+ <line number="558" hits="0"/>
2800
3903
  </lines>
2801
3904
  </method>
2802
3905
  <method name="(anonymous_57)" hits="0" signature="()V">
2803
3906
  <lines>
2804
- <line number="574" hits="0"/>
3907
+ <line number="562" hits="0"/>
2805
3908
  </lines>
2806
3909
  </method>
2807
3910
  <method name="(anonymous_58)" hits="0" signature="()V">
2808
3911
  <lines>
2809
- <line number="578" hits="0"/>
3912
+ <line number="573" hits="0"/>
2810
3913
  </lines>
2811
3914
  </method>
2812
3915
  <method name="(anonymous_59)" hits="0" signature="()V">
2813
3916
  <lines>
2814
- <line number="589" hits="0"/>
3917
+ <line number="583" hits="0"/>
2815
3918
  </lines>
2816
3919
  </method>
2817
3920
  <method name="(anonymous_60)" hits="0" signature="()V">
2818
3921
  <lines>
2819
- <line number="599" hits="0"/>
3922
+ <line number="583" hits="0"/>
2820
3923
  </lines>
2821
3924
  </method>
2822
3925
  <method name="(anonymous_61)" hits="0" signature="()V">
2823
3926
  <lines>
2824
- <line number="599" hits="0"/>
2825
- </lines>
2826
- </method>
2827
- <method name="(anonymous_62)" hits="0" signature="()V">
2828
- <lines>
2829
- <line number="600" hits="0"/>
3927
+ <line number="584" hits="0"/>
2830
3928
  </lines>
2831
3929
  </method>
2832
3930
  </methods>
@@ -2835,9 +3933,8 @@
2835
3933
  <line number="8" hits="2" branch="false"/>
2836
3934
  <line number="9" hits="2" branch="false"/>
2837
3935
  <line number="10" hits="2" branch="false"/>
2838
- <line number="11" hits="2" branch="false"/>
2839
- <line number="13" hits="2" branch="false"/>
2840
- <line number="15" hits="2" branch="false"/>
3936
+ <line number="12" hits="2" branch="false"/>
3937
+ <line number="14" hits="2" branch="false"/>
2841
3938
  <line number="16" hits="2" branch="false"/>
2842
3939
  <line number="17" hits="2" branch="false"/>
2843
3940
  <line number="19" hits="2" branch="false"/>
@@ -2865,160 +3962,161 @@
2865
3962
  <line number="62" hits="0" branch="false"/>
2866
3963
  <line number="65" hits="2" branch="false"/>
2867
3964
  <line number="66" hits="0" branch="false"/>
2868
- <line number="71" hits="0" branch="false"/>
3965
+ <line number="68" hits="0" branch="false"/>
3966
+ <line number="69" hits="0" branch="false"/>
3967
+ <line number="71" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2869
3968
  <line number="72" hits="0" branch="false"/>
2870
- <line number="74" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2871
- <line number="75" hits="0" branch="false"/>
2872
- <line number="81" hits="0" branch="false"/>
2873
- <line number="85" hits="2" branch="false"/>
3969
+ <line number="78" hits="0" branch="false"/>
3970
+ <line number="82" hits="2" branch="false"/>
3971
+ <line number="88" hits="0" branch="false"/>
3972
+ <line number="89" hits="0" branch="false"/>
3973
+ <line number="90" hits="0" branch="false"/>
2874
3974
  <line number="91" hits="0" branch="false"/>
2875
- <line number="92" hits="0" branch="false"/>
2876
3975
  <line number="93" hits="0" branch="false"/>
2877
- <line number="94" hits="0" branch="false"/>
2878
- <line number="96" hits="0" branch="false"/>
2879
- <line number="98" hits="0" branch="false"/>
2880
- <line number="100" hits="0" branch="false"/>
2881
- <line number="109" hits="0" branch="false"/>
2882
- <line number="116" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2883
- <line number="117" hits="0" branch="false"/>
2884
- <line number="122" hits="0" branch="false"/>
2885
- <line number="124" hits="0" branch="false"/>
2886
- <line number="134" hits="0" branch="false"/>
2887
- <line number="135" hits="0" branch="false"/>
3976
+ <line number="95" hits="0" branch="false"/>
3977
+ <line number="97" hits="0" branch="false"/>
3978
+ <line number="107" hits="0" branch="false"/>
3979
+ <line number="108" hits="0" branch="false"/>
3980
+ <line number="112" hits="0" branch="false"/>
3981
+ <line number="119" hits="0" branch="true" condition-coverage="0% (0/2)"/>
3982
+ <line number="120" hits="0" branch="false"/>
3983
+ <line number="125" hits="0" branch="true" condition-coverage="0% (0/2)"/>
3984
+ <line number="127" hits="0" branch="false"/>
3985
+ <line number="137" hits="0" branch="false"/>
2888
3986
  <line number="138" hits="0" branch="false"/>
2889
- <line number="142" hits="0" branch="false"/>
2890
- <line number="151" hits="2" branch="false"/>
2891
- <line number="157" hits="0" branch="false"/>
2892
- <line number="158" hits="0" branch="false"/>
3987
+ <line number="139" hits="0" branch="false"/>
3988
+ <line number="145" hits="2" branch="false"/>
3989
+ <line number="151" hits="0" branch="false"/>
3990
+ <line number="152" hits="0" branch="false"/>
3991
+ <line number="164" hits="0" branch="false"/>
2893
3992
  <line number="165" hits="0" branch="false"/>
2894
- <line number="178" hits="0" branch="false"/>
2895
- <line number="181" hits="0" branch="false"/>
2896
- <line number="182" hits="2" branch="false"/>
2897
- <line number="187" hits="0" branch="false"/>
2898
- <line number="188" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2899
- <line number="189" hits="0" branch="false"/>
2900
- <line number="194" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2901
- <line number="195" hits="0" branch="false"/>
2902
- <line number="198" hits="0" branch="false"/>
2903
- <line number="203" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3993
+ <line number="169" hits="0" branch="false"/>
3994
+ <line number="170" hits="2" branch="false"/>
3995
+ <line number="175" hits="0" branch="false"/>
3996
+ <line number="176" hits="0" branch="true" condition-coverage="0% (0/2)"/>
3997
+ <line number="177" hits="0" branch="false"/>
3998
+ <line number="182" hits="0" branch="true" condition-coverage="0% (0/2)"/>
3999
+ <line number="183" hits="0" branch="false"/>
4000
+ <line number="186" hits="0" branch="false"/>
4001
+ <line number="191" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4002
+ <line number="192" hits="0" branch="false"/>
4003
+ <line number="196" hits="0" branch="false"/>
4004
+ <line number="197" hits="2" branch="false"/>
4005
+ <line number="202" hits="0" branch="false"/>
4006
+ <line number="203" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2904
4007
  <line number="204" hits="0" branch="false"/>
2905
- <line number="208" hits="0" branch="false"/>
2906
- <line number="209" hits="2" branch="false"/>
2907
- <line number="214" hits="0" branch="false"/>
2908
- <line number="215" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2909
- <line number="216" hits="0" branch="false"/>
2910
- <line number="221" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2911
- <line number="222" hits="0" branch="false"/>
4008
+ <line number="209" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4009
+ <line number="210" hits="0" branch="false"/>
4010
+ <line number="215" hits="0" branch="false"/>
4011
+ <line number="221" hits="0" branch="false"/>
4012
+ <line number="225" hits="2" branch="false"/>
4013
+ <line number="226" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2912
4014
  <line number="227" hits="0" branch="false"/>
2913
- <line number="233" hits="0" branch="false"/>
2914
- <line number="237" hits="2" branch="false"/>
2915
- <line number="238" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2916
- <line number="239" hits="0" branch="false"/>
2917
- <line number="242" hits="0" branch="false"/>
2918
- <line number="244" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2919
- <line number="250" hits="0" branch="false"/>
2920
- <line number="253" hits="0" branch="false"/>
2921
- <line number="257" hits="2" branch="false"/>
2922
- <line number="263" hits="0" branch="false"/>
4015
+ <line number="230" hits="0" branch="false"/>
4016
+ <line number="232" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4017
+ <line number="238" hits="0" branch="false"/>
4018
+ <line number="241" hits="0" branch="false"/>
4019
+ <line number="245" hits="2" branch="false"/>
4020
+ <line number="251" hits="0" branch="false"/>
4021
+ <line number="252" hits="0" branch="false"/>
4022
+ <line number="256" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4023
+ <line number="257" hits="0" branch="false"/>
4024
+ <line number="260" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4025
+ <line number="261" hits="0" branch="false"/>
2923
4026
  <line number="264" hits="0" branch="false"/>
2924
- <line number="268" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2925
- <line number="269" hits="0" branch="false"/>
2926
- <line number="272" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2927
- <line number="273" hits="0" branch="false"/>
2928
- <line number="276" hits="0" branch="false"/>
2929
- <line number="278" hits="0" branch="false"/>
2930
- <line number="279" hits="0" branch="false"/>
2931
- <line number="287" hits="0" branch="false"/>
2932
- <line number="302" hits="0" branch="false"/>
2933
- <line number="318" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2934
- <line number="320" hits="0" branch="false"/>
2935
- <line number="321" hits="0" branch="false"/>
4027
+ <line number="266" hits="0" branch="false"/>
4028
+ <line number="267" hits="0" branch="false"/>
4029
+ <line number="275" hits="0" branch="false"/>
4030
+ <line number="290" hits="0" branch="false"/>
4031
+ <line number="306" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4032
+ <line number="308" hits="0" branch="false"/>
4033
+ <line number="309" hits="0" branch="false"/>
4034
+ <line number="310" hits="0" branch="false"/>
4035
+ <line number="311" hits="0" branch="false"/>
4036
+ <line number="312" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4037
+ <line number="313" hits="0" branch="false"/>
4038
+ <line number="315" hits="0" branch="false"/>
2936
4039
  <line number="322" hits="0" branch="false"/>
2937
4040
  <line number="323" hits="0" branch="false"/>
2938
- <line number="324" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2939
- <line number="325" hits="0" branch="false"/>
2940
- <line number="327" hits="0" branch="false"/>
4041
+ <line number="324" hits="0" branch="false"/>
4042
+ <line number="333" hits="2" branch="false"/>
2941
4043
  <line number="334" hits="0" branch="false"/>
2942
- <line number="335" hits="0" branch="false"/>
2943
- <line number="336" hits="0" branch="false"/>
2944
- <line number="345" hits="2" branch="false"/>
2945
- <line number="346" hits="0" branch="false"/>
2946
- <line number="364" hits="0" branch="false"/>
2947
- <line number="365" hits="0" branch="false"/>
4044
+ <line number="352" hits="0" branch="false"/>
4045
+ <line number="353" hits="0" branch="false"/>
4046
+ <line number="355" hits="0" branch="false"/>
4047
+ <line number="366" hits="2" branch="false"/>
2948
4048
  <line number="367" hits="0" branch="false"/>
2949
- <line number="378" hits="2" branch="false"/>
2950
- <line number="379" hits="0" branch="false"/>
2951
- <line number="380" hits="0" branch="false"/>
2952
- <line number="381" hits="0" branch="false"/>
4049
+ <line number="368" hits="0" branch="false"/>
4050
+ <line number="369" hits="0" branch="false"/>
4051
+ <line number="370" hits="0" branch="false"/>
4052
+ <line number="372" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4053
+ <line number="373" hits="0" branch="false"/>
4054
+ <line number="377" hits="0" branch="false"/>
4055
+ <line number="378" hits="0" branch="false"/>
4056
+ <line number="381" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2953
4057
  <line number="382" hits="0" branch="false"/>
2954
- <line number="384" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2955
- <line number="385" hits="0" branch="false"/>
2956
- <line number="389" hits="0" branch="false"/>
4058
+ <line number="386" hits="0" branch="false"/>
4059
+ <line number="387" hits="0" branch="false"/>
2957
4060
  <line number="390" hits="0" branch="false"/>
2958
- <line number="393" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4061
+ <line number="391" hits="0" branch="false"/>
4062
+ <line number="392" hits="0" branch="false"/>
2959
4063
  <line number="394" hits="0" branch="false"/>
4064
+ <line number="397" hits="2" branch="false"/>
2960
4065
  <line number="398" hits="0" branch="false"/>
2961
4066
  <line number="399" hits="0" branch="false"/>
2962
- <line number="402" hits="0" branch="false"/>
2963
- <line number="403" hits="0" branch="false"/>
2964
- <line number="404" hits="0" branch="false"/>
2965
- <line number="406" hits="0" branch="false"/>
2966
- <line number="409" hits="2" branch="false"/>
2967
- <line number="410" hits="0" branch="false"/>
4067
+ <line number="400" hits="0" branch="false"/>
2968
4068
  <line number="411" hits="0" branch="false"/>
2969
4069
  <line number="412" hits="0" branch="false"/>
2970
- <line number="423" hits="0" branch="false"/>
2971
- <line number="424" hits="0" branch="false"/>
2972
- <line number="427" hits="0" branch="false"/>
2973
- <line number="428" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2974
- <line number="430" hits="0" branch="false"/>
2975
- <line number="431" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4070
+ <line number="415" hits="0" branch="false"/>
4071
+ <line number="416" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4072
+ <line number="418" hits="0" branch="false"/>
4073
+ <line number="419" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4074
+ <line number="420" hits="0" branch="false"/>
4075
+ <line number="422" hits="0" branch="false"/>
2976
4076
  <line number="432" hits="0" branch="false"/>
2977
- <line number="434" hits="0" branch="false"/>
2978
- <line number="444" hits="0" branch="false"/>
2979
- <line number="448" hits="0" branch="false"/>
2980
- <line number="455" hits="0" branch="false"/>
4077
+ <line number="436" hits="0" branch="false"/>
4078
+ <line number="443" hits="0" branch="false"/>
4079
+ <line number="445" hits="0" branch="false"/>
4080
+ <line number="456" hits="0" branch="false"/>
2981
4081
  <line number="457" hits="0" branch="false"/>
2982
- <line number="468" hits="0" branch="false"/>
4082
+ <line number="463" hits="0" branch="false"/>
4083
+ <line number="465" hits="0" branch="false"/>
4084
+ <line number="467" hits="0" branch="false"/>
2983
4085
  <line number="469" hits="0" branch="false"/>
2984
- <line number="475" hits="0" branch="false"/>
2985
- <line number="477" hits="0" branch="false"/>
2986
4086
  <line number="479" hits="0" branch="false"/>
2987
- <line number="481" hits="0" branch="false"/>
4087
+ <line number="483" hits="0" branch="true" condition-coverage="0% (0/4)"/>
4088
+ <line number="487" hits="0" branch="false"/>
2988
4089
  <line number="490" hits="0" branch="false"/>
2989
- <line number="497" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2990
- <line number="498" hits="0" branch="false"/>
2991
- <line number="503" hits="0" branch="false"/>
2992
- <line number="505" hits="0" branch="false"/>
2993
- <line number="508" hits="0" branch="false"/>
4090
+ <line number="491" hits="0" branch="false"/>
4091
+ <line number="500" hits="0" branch="false"/>
4092
+ <line number="503" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4093
+ <line number="504" hits="0" branch="false"/>
2994
4094
  <line number="509" hits="0" branch="false"/>
2995
- <line number="518" hits="0" branch="false"/>
4095
+ <line number="515" hits="2" branch="false"/>
4096
+ <line number="520" hits="0" branch="false"/>
4097
+ <line number="521" hits="0" branch="false"/>
2996
4098
  <line number="522" hits="0" branch="false"/>
2997
- <line number="531" hits="2" branch="false"/>
2998
- <line number="536" hits="0" branch="false"/>
2999
- <line number="537" hits="0" branch="false"/>
3000
- <line number="538" hits="0" branch="false"/>
3001
- <line number="539" hits="0" branch="false"/>
3002
- <line number="548" hits="0" branch="false"/>
3003
- <line number="551" hits="0" branch="false"/>
3004
- <line number="556" hits="2" branch="false"/>
4099
+ <line number="523" hits="0" branch="false"/>
4100
+ <line number="532" hits="0" branch="false"/>
4101
+ <line number="535" hits="0" branch="false"/>
4102
+ <line number="540" hits="2" branch="false"/>
4103
+ <line number="543" hits="0" branch="false"/>
4104
+ <line number="545" hits="0" branch="true" condition-coverage="0% (0/5)"/>
4105
+ <line number="550" hits="0" branch="false"/>
4106
+ <line number="553" hits="0" branch="false"/>
4107
+ <line number="554" hits="0" branch="false"/>
4108
+ <line number="558" hits="0" branch="false"/>
3005
4109
  <line number="559" hits="0" branch="false"/>
3006
- <line number="561" hits="0" branch="true" condition-coverage="0% (0/5)"/>
3007
- <line number="566" hits="0" branch="false"/>
3008
- <line number="569" hits="0" branch="false"/>
4110
+ <line number="563" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4111
+ <line number="564" hits="0" branch="false"/>
4112
+ <line number="568" hits="0" branch="false"/>
3009
4113
  <line number="570" hits="0" branch="false"/>
3010
- <line number="574" hits="0" branch="false"/>
3011
- <line number="575" hits="0" branch="false"/>
3012
- <line number="579" hits="0" branch="true" condition-coverage="0% (0/2)"/>
3013
- <line number="580" hits="0" branch="false"/>
4114
+ <line number="573" hits="0" branch="false"/>
4115
+ <line number="577" hits="0" branch="false"/>
4116
+ <line number="583" hits="0" branch="false"/>
3014
4117
  <line number="584" hits="0" branch="false"/>
3015
- <line number="586" hits="0" branch="false"/>
3016
- <line number="589" hits="0" branch="false"/>
3017
- <line number="593" hits="0" branch="false"/>
3018
- <line number="599" hits="0" branch="false"/>
3019
- <line number="600" hits="0" branch="false"/>
3020
- <line number="601" hits="0" branch="false"/>
3021
- <line number="605" hits="2" branch="false"/>
4118
+ <line number="585" hits="0" branch="false"/>
4119
+ <line number="589" hits="2" branch="false"/>
3022
4120
  </lines>
3023
4121
  </class>
3024
4122
  </classes>
@@ -3101,7 +4199,7 @@
3101
4199
  </class>
3102
4200
  </classes>
3103
4201
  </package>
3104
- <package name="src.Device.DeviceSelector" line-rate="0.888" branch-rate="0.6851">
4202
+ <package name="src.Device.DeviceSelector" line-rate="0.887" branch-rate="0.6923">
3105
4203
  <classes>
3106
4204
  <class name="BasicDeviceInfo.tsx" filename="src/Device/DeviceSelector/BasicDeviceInfo.tsx" line-rate="0.7777" branch-rate="0.5789">
3107
4205
  <methods>
@@ -3193,51 +4291,51 @@
3193
4291
  <line number="27" hits="34" branch="false"/>
3194
4292
  </lines>
3195
4293
  </class>
3196
- <class name="DeviceSelector.tsx" filename="src/Device/DeviceSelector/DeviceSelector.tsx" line-rate="0.9183" branch-rate="0.7857">
4294
+ <class name="DeviceSelector.tsx" filename="src/Device/DeviceSelector/DeviceSelector.tsx" line-rate="0.9166" branch-rate="0.8332999999999999">
3197
4295
  <methods>
3198
4296
  <method name="(anonymous_5)" hits="10" signature="()V">
3199
4297
  <lines>
3200
- <line number="50" hits="10"/>
4298
+ <line number="45" hits="10"/>
3201
4299
  </lines>
3202
4300
  </method>
3203
4301
  <method name="(anonymous_6)" hits="26" signature="()V">
3204
4302
  <lines>
3205
- <line number="51" hits="26"/>
4303
+ <line number="46" hits="26"/>
3206
4304
  </lines>
3207
4305
  </method>
3208
4306
  <method name="(anonymous_7)" hits="2" signature="()V">
3209
4307
  <lines>
3210
- <line number="69" hits="2"/>
4308
+ <line number="64" hits="2"/>
3211
4309
  </lines>
3212
4310
  </method>
3213
4311
  <method name="(anonymous_8)" hits="6" signature="()V">
3214
4312
  <lines>
3215
- <line number="80" hits="6"/>
4313
+ <line number="75" hits="6"/>
3216
4314
  </lines>
3217
4315
  </method>
3218
4316
  <method name="(anonymous_9)" hits="11" signature="()V">
3219
4317
  <lines>
3220
- <line number="106" hits="11"/>
4318
+ <line number="101" hits="11"/>
3221
4319
  </lines>
3222
4320
  </method>
3223
4321
  <method name="(anonymous_10)" hits="8" signature="()V">
3224
4322
  <lines>
3225
- <line number="129" hits="8"/>
4323
+ <line number="120" hits="8"/>
3226
4324
  </lines>
3227
4325
  </method>
3228
4326
  <method name="(anonymous_11)" hits="11" signature="()V">
3229
4327
  <lines>
3230
- <line number="132" hits="11"/>
4328
+ <line number="123" hits="11"/>
3231
4329
  </lines>
3232
4330
  </method>
3233
4331
  <method name="(anonymous_12)" hits="0" signature="()V">
3234
4332
  <lines>
3235
- <line number="141" hits="0"/>
4333
+ <line number="132" hits="0"/>
3236
4334
  </lines>
3237
4335
  </method>
3238
4336
  <method name="(anonymous_13)" hits="6" signature="()V">
3239
4337
  <lines>
3240
- <line number="159" hits="6"/>
4338
+ <line number="150" hits="6"/>
3241
4339
  </lines>
3242
4340
  </method>
3243
4341
  </methods>
@@ -3253,44 +4351,43 @@
3253
4351
  <line number="30" hits="1" branch="false"/>
3254
4352
  <line number="31" hits="1" branch="false"/>
3255
4353
  <line number="32" hits="1" branch="false"/>
3256
- <line number="50" hits="1" branch="false"/>
3257
- <line number="51" hits="11" branch="false"/>
4354
+ <line number="45" hits="1" branch="false"/>
4355
+ <line number="46" hits="11" branch="false"/>
4356
+ <line number="56" hits="26" branch="false"/>
4357
+ <line number="57" hits="26" branch="false"/>
4358
+ <line number="59" hits="26" branch="false"/>
4359
+ <line number="60" hits="26" branch="false"/>
3258
4360
  <line number="61" hits="26" branch="false"/>
3259
- <line number="62" hits="26" branch="false"/>
4361
+ <line number="62" hits="26" branch="true" condition-coverage="100% (2/2)"/>
3260
4362
  <line number="64" hits="26" branch="false"/>
3261
- <line number="65" hits="26" branch="false"/>
3262
- <line number="66" hits="26" branch="false"/>
3263
- <line number="67" hits="26" branch="true" condition-coverage="100% (2/2)"/>
3264
- <line number="69" hits="26" branch="false"/>
3265
- <line number="70" hits="2" branch="false"/>
3266
- <line number="71" hits="2" branch="false"/>
3267
- <line number="72" hits="2" branch="false"/>
3268
- <line number="73" hits="2" branch="false"/>
3269
- <line number="79" hits="26" branch="false"/>
3270
- <line number="81" hits="6" branch="false"/>
3271
- <line number="82" hits="6" branch="false"/>
3272
- <line number="83" hits="6" branch="false"/>
3273
- <line number="84" hits="6" branch="false"/>
3274
- <line number="85" hits="6" branch="false"/>
3275
- <line number="86" hits="6" branch="true" condition-coverage="100% (1/1)"/>
3276
- <line number="87" hits="4" branch="false"/>
3277
- <line number="106" hits="26" branch="false"/>
3278
- <line number="107" hits="11" branch="false"/>
3279
- <line number="111" hits="11" branch="false"/>
3280
- <line number="129" hits="26" branch="false"/>
3281
- <line number="130" hits="8" branch="false"/>
3282
- <line number="132" hits="26" branch="false"/>
3283
- <line number="133" hits="11" branch="false"/>
3284
- <line number="134" hits="11" branch="false"/>
3285
- <line number="137" hits="26" branch="false"/>
3286
- <line number="141" hits="0" branch="false"/>
3287
- <line number="144" hits="26" branch="false"/>
3288
- <line number="160" hits="6" branch="true" condition-coverage="0% (0/1)"/>
3289
- <line number="161" hits="0" branch="false"/>
3290
- <line number="162" hits="0" branch="false"/>
3291
- <line number="165" hits="6" branch="true" condition-coverage="0% (0/1)"/>
3292
- <line number="166" hits="0" branch="false"/>
3293
- <line number="169" hits="6" branch="false"/>
4363
+ <line number="65" hits="2" branch="false"/>
4364
+ <line number="66" hits="2" branch="false"/>
4365
+ <line number="67" hits="2" branch="false"/>
4366
+ <line number="68" hits="2" branch="false"/>
4367
+ <line number="74" hits="26" branch="false"/>
4368
+ <line number="76" hits="6" branch="false"/>
4369
+ <line number="77" hits="6" branch="false"/>
4370
+ <line number="78" hits="6" branch="false"/>
4371
+ <line number="79" hits="6" branch="false"/>
4372
+ <line number="80" hits="6" branch="false"/>
4373
+ <line number="81" hits="6" branch="true" condition-coverage="100% (1/1)"/>
4374
+ <line number="82" hits="4" branch="false"/>
4375
+ <line number="101" hits="26" branch="false"/>
4376
+ <line number="102" hits="11" branch="false"/>
4377
+ <line number="120" hits="26" branch="false"/>
4378
+ <line number="121" hits="8" branch="false"/>
4379
+ <line number="123" hits="26" branch="false"/>
4380
+ <line number="124" hits="11" branch="false"/>
4381
+ <line number="125" hits="11" branch="false"/>
4382
+ <line number="128" hits="26" branch="false"/>
4383
+ <line number="132" hits="0" branch="false"/>
4384
+ <line number="135" hits="26" branch="false"/>
4385
+ <line number="151" hits="6" branch="true" condition-coverage="0% (0/1)"/>
4386
+ <line number="152" hits="0" branch="false"/>
4387
+ <line number="153" hits="0" branch="false"/>
4388
+ <line number="156" hits="6" branch="true" condition-coverage="0% (0/1)"/>
4389
+ <line number="157" hits="0" branch="false"/>
4390
+ <line number="160" hits="6" branch="false"/>
3294
4391
  </lines>
3295
4392
  </class>
3296
4393
  <class name="Favorite.tsx" filename="src/Device/DeviceSelector/Favorite.tsx" line-rate="0.8571" branch-rate="0.5">
@@ -3746,36 +4843,37 @@
3746
4843
  <methods>
3747
4844
  <method name="(anonymous_9)" hits="56" signature="()V">
3748
4845
  <lines>
3749
- <line number="203" hits="56"/>
4846
+ <line number="202" hits="56"/>
3750
4847
  </lines>
3751
4848
  </method>
3752
4849
  <method name="(anonymous_11)" hits="56" signature="()V">
3753
4850
  <lines>
3754
- <line number="221" hits="56"/>
4851
+ <line number="220" hits="56"/>
3755
4852
  </lines>
3756
4853
  </method>
3757
4854
  <method name="(anonymous_12)" hits="28" signature="()V">
3758
4855
  <lines>
3759
- <line number="224" hits="28"/>
4856
+ <line number="223" hits="28"/>
3760
4857
  </lines>
3761
4858
  </method>
3762
4859
  <method name="(anonymous_13)" hits="28" signature="()V">
3763
4860
  <lines>
3764
- <line number="231" hits="28"/>
4861
+ <line number="230" hits="28"/>
3765
4862
  </lines>
3766
4863
  </method>
3767
4864
  <method name="(anonymous_14)" hits="0" signature="()V">
3768
4865
  <lines>
3769
- <line number="242" hits="0"/>
4866
+ <line number="241" hits="0"/>
3770
4867
  </lines>
3771
4868
  </method>
3772
4869
  <method name="(anonymous_15)" hits="0" signature="()V">
3773
4870
  <lines>
3774
- <line number="246" hits="0"/>
4871
+ <line number="245" hits="0"/>
3775
4872
  </lines>
3776
4873
  </method>
3777
4874
  </methods>
3778
4875
  <lines>
4876
+ <line number="34" hits="3" branch="false"/>
3779
4877
  <line number="35" hits="3" branch="false"/>
3780
4878
  <line number="36" hits="3" branch="false"/>
3781
4879
  <line number="37" hits="3" branch="false"/>
@@ -3783,32 +4881,31 @@
3783
4881
  <line number="39" hits="3" branch="false"/>
3784
4882
  <line number="40" hits="3" branch="false"/>
3785
4883
  <line number="41" hits="3" branch="false"/>
3786
- <line number="42" hits="3" branch="false"/>
3787
- <line number="70" hits="3" branch="false"/>
3788
- <line number="187" hits="56" branch="true" condition-coverage="75% (3/4)"/>
3789
- <line number="189" hits="3" branch="false"/>
3790
- <line number="191" hits="112" branch="true" condition-coverage="83.33333333333334% (5/6)"/>
3791
- <line number="193" hits="0" branch="false"/>
3792
- <line number="203" hits="3" branch="false"/>
3793
- <line number="204" hits="56" branch="true" condition-coverage="0% (0/1)"/>
3794
- <line number="205" hits="0" branch="true" condition-coverage="0% (0/7)"/>
3795
- <line number="206" hits="0" branch="false"/>
3796
- <line number="208" hits="0" branch="true" condition-coverage="0% (0/5)"/>
3797
- <line number="209" hits="0" branch="false"/>
3798
- <line number="212" hits="56" branch="false"/>
3799
- <line number="215" hits="56" branch="false"/>
3800
- <line number="221" hits="28" branch="false"/>
3801
- <line number="222" hits="56" branch="true" condition-coverage="100% (3/3)"/>
3802
- <line number="224" hits="3" branch="false"/>
3803
- <line number="227" hits="28" branch="true" condition-coverage="100% (3/3)"/>
3804
- <line number="231" hits="28" branch="false"/>
3805
- <line number="235" hits="28" branch="true" condition-coverage="66.66666666666666% (2/3)"/>
3806
- <line number="236" hits="0" branch="false"/>
3807
- <line number="239" hits="28" branch="true" condition-coverage="14.285714285714285% (1/7)"/>
3808
- <line number="242" hits="3" branch="false"/>
3809
- <line number="243" hits="0" branch="true" condition-coverage="0% (0/2)"/>
3810
- <line number="246" hits="3" branch="false"/>
3811
- <line number="247" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4884
+ <line number="69" hits="3" branch="false"/>
4885
+ <line number="186" hits="56" branch="true" condition-coverage="75% (3/4)"/>
4886
+ <line number="188" hits="3" branch="false"/>
4887
+ <line number="190" hits="112" branch="true" condition-coverage="83.33333333333334% (5/6)"/>
4888
+ <line number="192" hits="0" branch="false"/>
4889
+ <line number="202" hits="3" branch="false"/>
4890
+ <line number="203" hits="56" branch="true" condition-coverage="0% (0/1)"/>
4891
+ <line number="204" hits="0" branch="true" condition-coverage="0% (0/7)"/>
4892
+ <line number="205" hits="0" branch="false"/>
4893
+ <line number="207" hits="0" branch="true" condition-coverage="0% (0/5)"/>
4894
+ <line number="208" hits="0" branch="false"/>
4895
+ <line number="211" hits="56" branch="false"/>
4896
+ <line number="214" hits="56" branch="false"/>
4897
+ <line number="220" hits="28" branch="false"/>
4898
+ <line number="221" hits="56" branch="true" condition-coverage="100% (3/3)"/>
4899
+ <line number="223" hits="3" branch="false"/>
4900
+ <line number="226" hits="28" branch="true" condition-coverage="100% (3/3)"/>
4901
+ <line number="230" hits="28" branch="false"/>
4902
+ <line number="234" hits="28" branch="true" condition-coverage="66.66666666666666% (2/3)"/>
4903
+ <line number="235" hits="0" branch="false"/>
4904
+ <line number="238" hits="28" branch="true" condition-coverage="14.285714285714285% (1/7)"/>
4905
+ <line number="241" hits="3" branch="false"/>
4906
+ <line number="242" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4907
+ <line number="245" hits="3" branch="false"/>
4908
+ <line number="246" hits="0" branch="true" condition-coverage="0% (0/2)"/>
3812
4909
  </lines>
3813
4910
  </class>
3814
4911
  </classes>
@@ -4028,7 +5125,7 @@
4028
5125
  <lines>
4029
5126
  <line number="7" hits="2" branch="false"/>
4030
5127
  <line number="8" hits="2" branch="false"/>
4031
- <line number="11" hits="2" branch="false"/>
5128
+ <line number="10" hits="2" branch="false"/>
4032
5129
  <line number="12" hits="2" branch="false"/>
4033
5130
  <line number="13" hits="2" branch="false"/>
4034
5131
  <line number="14" hits="2" branch="false"/>
@@ -4608,84 +5705,76 @@
4608
5705
  </class>
4609
5706
  </classes>
4610
5707
  </package>
4611
- <package name="src.Log" line-rate="0.6818000000000001" branch-rate="0">
5708
+ <package name="src.Log" line-rate="0.6842" branch-rate="0">
4612
5709
  <classes>
4613
- <class name="logSlice.ts" filename="src/Log/logSlice.ts" line-rate="0.6818000000000001" branch-rate="0">
5710
+ <class name="logSlice.ts" filename="src/Log/logSlice.ts" line-rate="0.6842" branch-rate="0">
4614
5711
  <methods>
4615
- <method name="(anonymous_10)" hits="0" signature="()V">
5712
+ <method name="(anonymous_9)" hits="0" signature="()V">
4616
5713
  <lines>
4617
5714
  <line number="27" hits="0"/>
4618
5715
  </lines>
4619
5716
  </method>
4620
- <method name="(anonymous_11)" hits="0" signature="()V">
5717
+ <method name="(anonymous_10)" hits="0" signature="()V">
4621
5718
  <lines>
4622
5719
  <line number="35" hits="0"/>
4623
5720
  </lines>
4624
5721
  </method>
4625
- <method name="(anonymous_12)" hits="10" signature="()V">
5722
+ <method name="(anonymous_11)" hits="10" signature="()V">
4626
5723
  <lines>
4627
5724
  <line number="40" hits="10"/>
4628
5725
  </lines>
4629
5726
  </method>
4630
- <method name="(anonymous_13)" hits="0" signature="()V">
5727
+ <method name="(anonymous_12)" hits="0" signature="()V">
4631
5728
  <lines>
4632
5729
  <line number="41" hits="0"/>
4633
5730
  </lines>
4634
5731
  </method>
4635
- <method name="(anonymous_14)" hits="0" signature="()V">
4636
- <lines>
4637
- <line number="43" hits="0"/>
4638
- </lines>
4639
- </method>
4640
- <method name="(anonymous_15)" hits="10" signature="()V">
5732
+ <method name="(anonymous_13)" hits="10" signature="()V">
4641
5733
  <lines>
4642
- <line number="44" hits="10"/>
5734
+ <line number="42" hits="10"/>
4643
5735
  </lines>
4644
5736
  </method>
4645
- <method name="(anonymous_16)" hits="0" signature="()V">
5737
+ <method name="(anonymous_14)" hits="0" signature="()V">
4646
5738
  <lines>
4647
- <line number="51" hits="0"/>
5739
+ <line number="49" hits="0"/>
4648
5740
  </lines>
4649
5741
  </method>
4650
- <method name="(anonymous_17)" hits="0" signature="()V">
5742
+ <method name="(anonymous_15)" hits="0" signature="()V">
4651
5743
  <lines>
4652
- <line number="57" hits="0"/>
5744
+ <line number="55" hits="0"/>
4653
5745
  </lines>
4654
5746
  </method>
4655
- <method name="(anonymous_18)" hits="0" signature="()V">
5747
+ <method name="(anonymous_16)" hits="0" signature="()V">
4656
5748
  <lines>
4657
- <line number="60" hits="0"/>
5749
+ <line number="58" hits="0"/>
4658
5750
  </lines>
4659
5751
  </method>
4660
- <method name="(anonymous_19)" hits="0" signature="()V">
5752
+ <method name="(anonymous_17)" hits="0" signature="()V">
4661
5753
  <lines>
4662
- <line number="63" hits="0"/>
5754
+ <line number="61" hits="0"/>
4663
5755
  </lines>
4664
5756
  </method>
4665
5757
  </methods>
4666
5758
  <lines>
4667
- <line number="7" hits="12" branch="false"/>
4668
- <line number="11" hits="12" branch="false"/>
4669
- <line number="13" hits="12" branch="false"/>
4670
- <line number="21" hits="12" branch="false"/>
4671
- <line number="27" hits="12" branch="false"/>
4672
- <line number="35" hits="12" branch="false"/>
5759
+ <line number="7" hits="9" branch="false"/>
5760
+ <line number="11" hits="9" branch="false"/>
5761
+ <line number="13" hits="9" branch="false"/>
5762
+ <line number="21" hits="9" branch="false"/>
5763
+ <line number="27" hits="9" branch="false"/>
5764
+ <line number="35" hits="9" branch="false"/>
4673
5765
  <line number="36" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4674
- <line number="40" hits="12" branch="false"/>
4675
- <line number="41" hits="12" branch="false"/>
4676
- <line number="42" hits="12" branch="false"/>
4677
- <line number="43" hits="12" branch="false"/>
4678
- <line number="44" hits="12" branch="false"/>
4679
- <line number="45" hits="10" branch="false"/>
4680
- <line number="47" hits="12" branch="false"/>
4681
- <line number="52" hits="0" branch="false"/>
4682
- <line number="58" hits="0" branch="false"/>
4683
- <line number="61" hits="0" branch="false"/>
4684
- <line number="64" hits="0" branch="false"/>
4685
- <line number="65" hits="0" branch="false"/>
4686
- <line number="71" hits="49" branch="false"/>
4687
- <line number="72" hits="0" branch="false"/>
4688
- <line number="73" hits="12" branch="false"/>
5766
+ <line number="40" hits="10" branch="false"/>
5767
+ <line number="41" hits="9" branch="false"/>
5768
+ <line number="42" hits="9" branch="false"/>
5769
+ <line number="43" hits="10" branch="false"/>
5770
+ <line number="45" hits="9" branch="false"/>
5771
+ <line number="50" hits="0" branch="false"/>
5772
+ <line number="56" hits="0" branch="false"/>
5773
+ <line number="59" hits="0" branch="false"/>
5774
+ <line number="62" hits="0" branch="false"/>
5775
+ <line number="68" hits="49" branch="false"/>
5776
+ <line number="69" hits="0" branch="false"/>
5777
+ <line number="70" hits="9" branch="false"/>
4689
5778
  </lines>
4690
5779
  </class>
4691
5780
  </classes>
@@ -5657,84 +6746,84 @@
5657
6746
  </class>
5658
6747
  </classes>
5659
6748
  </package>
5660
- <package name="src.logging" line-rate="0.9014" branch-rate="0.6">
6749
+ <package name="src.logging" line-rate="0.8732" branch-rate="0.5333">
5661
6750
  <classes>
5662
6751
  <class name="appTransport.ts" filename="src/logging/appTransport.ts" line-rate="1" branch-rate="1">
5663
6752
  <methods>
5664
- <method name="(anonymous_3)" hits="38" signature="()V">
6753
+ <method name="(anonymous_3)" hits="27" signature="()V">
5665
6754
  <lines>
5666
- <line number="31" hits="38"/>
6755
+ <line number="31" hits="27"/>
5667
6756
  </lines>
5668
6757
  </method>
5669
- <method name="(anonymous_4)" hits="19" signature="()V">
6758
+ <method name="(anonymous_4)" hits="17" signature="()V">
5670
6759
  <lines>
5671
- <line number="18" hits="19"/>
6760
+ <line number="18" hits="17"/>
5672
6761
  </lines>
5673
6762
  </method>
5674
6763
  </methods>
5675
6764
  <lines>
5676
- <line number="8" hits="14" branch="false"/>
5677
- <line number="14" hits="19" branch="false"/>
5678
- <line number="15" hits="19" branch="false"/>
5679
- <line number="16" hits="19" branch="false"/>
5680
- <line number="19" hits="19" branch="false"/>
5681
- <line number="21" hits="19" branch="true" condition-coverage="100% (1/1)"/>
6765
+ <line number="8" hits="12" branch="false"/>
6766
+ <line number="14" hits="17" branch="false"/>
6767
+ <line number="15" hits="17" branch="false"/>
6768
+ <line number="16" hits="17" branch="false"/>
6769
+ <line number="19" hits="17" branch="false"/>
6770
+ <line number="21" hits="17" branch="true" condition-coverage="100% (1/1)"/>
5682
6771
  <line number="22" hits="1" branch="false"/>
5683
- <line number="27" hits="18" branch="false"/>
5684
- <line number="28" hits="18" branch="false"/>
5685
- <line number="32" hits="38" branch="false"/>
5686
- <line number="38" hits="38" branch="false"/>
5687
- <line number="39" hits="38" branch="false"/>
6772
+ <line number="27" hits="16" branch="false"/>
6773
+ <line number="28" hits="16" branch="false"/>
6774
+ <line number="32" hits="27" branch="false"/>
6775
+ <line number="38" hits="27" branch="false"/>
6776
+ <line number="39" hits="27" branch="false"/>
5688
6777
  </lines>
5689
6778
  </class>
5690
6779
  <class name="describeError.ts" filename="src/logging/describeError.ts" line-rate="0.9411" branch-rate="0.8">
5691
6780
  <methods>
5692
- <method name="hasMaybeMessageAndOrigin" hits="19" signature="()V">
6781
+ <method name="hasMaybeMessageAndOrigin" hits="8" signature="()V">
5693
6782
  <lines>
5694
- <line number="12" hits="19"/>
6783
+ <line number="12" hits="8"/>
5695
6784
  </lines>
5696
6785
  </method>
5697
- <method name="(anonymous_2)" hits="20" signature="()V">
6786
+ <method name="(anonymous_2)" hits="9" signature="()V">
5698
6787
  <lines>
5699
- <line number="18" hits="20"/>
6788
+ <line number="18" hits="9"/>
5700
6789
  </lines>
5701
6790
  </method>
5702
- <method name="(anonymous_3)" hits="19" signature="()V">
6791
+ <method name="(anonymous_3)" hits="8" signature="()V">
5703
6792
  <lines>
5704
- <line number="30" hits="19"/>
6793
+ <line number="30" hits="8"/>
5705
6794
  </lines>
5706
6795
  </method>
5707
- <method name="(anonymous_4)" hits="21" signature="()V">
6796
+ <method name="(anonymous_4)" hits="10" signature="()V">
5708
6797
  <lines>
5709
- <line number="38" hits="21"/>
6798
+ <line number="38" hits="10"/>
5710
6799
  </lines>
5711
6800
  </method>
5712
6801
  </methods>
5713
6802
  <lines>
5714
- <line number="15" hits="19" branch="false"/>
5715
- <line number="18" hits="14" branch="false"/>
5716
- <line number="19" hits="20" branch="true" condition-coverage="100% (1/1)"/>
5717
- <line number="20" hits="13" branch="false"/>
6803
+ <line number="15" hits="8" branch="false"/>
6804
+ <line number="18" hits="13" branch="false"/>
6805
+ <line number="19" hits="9" branch="true" condition-coverage="100% (1/1)"/>
6806
+ <line number="20" hits="2" branch="false"/>
5718
6807
  <line number="23" hits="7" branch="true" condition-coverage="100% (1/1)"/>
5719
6808
  <line number="24" hits="2" branch="false"/>
5720
6809
  <line number="27" hits="5" branch="false"/>
5721
- <line number="30" hits="14" branch="false"/>
5722
- <line number="31" hits="19" branch="true" condition-coverage="100% (1/1)"/>
5723
- <line number="32" hits="18" branch="false"/>
6810
+ <line number="30" hits="13" branch="false"/>
6811
+ <line number="31" hits="8" branch="true" condition-coverage="100% (1/1)"/>
6812
+ <line number="32" hits="7" branch="false"/>
5724
6813
  <line number="35" hits="1" branch="false"/>
5725
- <line number="38" hits="21" branch="false"/>
5726
- <line number="39" hits="21" branch="true" condition-coverage="100% (1/1)"/>
6814
+ <line number="38" hits="13" branch="false"/>
6815
+ <line number="39" hits="10" branch="true" condition-coverage="100% (1/1)"/>
5727
6816
  <line number="40" hits="2" branch="false"/>
5728
- <line number="51" hits="19" branch="true" condition-coverage="0% (0/1)"/>
6817
+ <line number="51" hits="8" branch="true" condition-coverage="0% (0/1)"/>
5729
6818
  <line number="52" hits="0" branch="false"/>
5730
- <line number="55" hits="19" branch="false"/>
6819
+ <line number="55" hits="8" branch="false"/>
5731
6820
  </lines>
5732
6821
  </class>
5733
- <class name="index.ts" filename="src/logging/index.ts" line-rate="0.8284999999999999" branch-rate="0.44439999999999996">
6822
+ <class name="index.ts" filename="src/logging/index.ts" line-rate="0.7714" branch-rate="0.3333">
5734
6823
  <methods>
5735
- <method name="(anonymous_2)" hits="13" signature="()V">
6824
+ <method name="(anonymous_2)" hits="11" signature="()V">
5736
6825
  <lines>
5737
- <line number="21" hits="13"/>
6826
+ <line number="21" hits="11"/>
5738
6827
  </lines>
5739
6828
  </method>
5740
6829
  <method name="(anonymous_3)" hits="0" signature="()V">
@@ -5742,19 +6831,19 @@
5742
6831
  <line number="31" hits="0"/>
5743
6832
  </lines>
5744
6833
  </method>
5745
- <method name="(anonymous_4)" hits="34" signature="()V">
6834
+ <method name="(anonymous_4)" hits="20" signature="()V">
5746
6835
  <lines>
5747
- <line number="58" hits="34"/>
6836
+ <line number="58" hits="20"/>
5748
6837
  </lines>
5749
6838
  </method>
5750
- <method name="(anonymous_5)" hits="34" signature="()V">
6839
+ <method name="(anonymous_5)" hits="20" signature="()V">
5751
6840
  <lines>
5752
- <line number="62" hits="34"/>
6841
+ <line number="62" hits="20"/>
5753
6842
  </lines>
5754
6843
  </method>
5755
- <method name="(anonymous_6)" hits="34" signature="()V">
6844
+ <method name="(anonymous_6)" hits="20" signature="()V">
5756
6845
  <lines>
5757
- <line number="70" hits="34"/>
6846
+ <line number="70" hits="20"/>
5758
6847
  </lines>
5759
6848
  </method>
5760
6849
  <method name="(anonymous_7)" hits="0" signature="()V">
@@ -5772,48 +6861,48 @@
5772
6861
  <line number="88" hits="0"/>
5773
6862
  </lines>
5774
6863
  </method>
5775
- <method name="(anonymous_10)" hits="11" signature="()V">
6864
+ <method name="(anonymous_10)" hits="0" signature="()V">
5776
6865
  <lines>
5777
- <line number="96" hits="11"/>
6866
+ <line number="96" hits="0"/>
5778
6867
  </lines>
5779
6868
  </method>
5780
6869
  </methods>
5781
6870
  <lines>
5782
- <line number="8" hits="13" branch="false"/>
5783
- <line number="9" hits="13" branch="false"/>
5784
- <line number="10" hits="13" branch="false"/>
5785
- <line number="13" hits="13" branch="false"/>
5786
- <line number="14" hits="13" branch="false"/>
5787
- <line number="15" hits="13" branch="false"/>
5788
- <line number="16" hits="13" branch="false"/>
5789
- <line number="17" hits="13" branch="false"/>
5790
- <line number="19" hits="13" branch="false"/>
5791
- <line number="21" hits="13" branch="false"/>
5792
- <line number="22" hits="13" branch="false"/>
5793
- <line number="23" hits="13" branch="false"/>
6871
+ <line number="8" hits="11" branch="false"/>
6872
+ <line number="9" hits="11" branch="false"/>
6873
+ <line number="10" hits="11" branch="false"/>
6874
+ <line number="13" hits="11" branch="false"/>
6875
+ <line number="14" hits="11" branch="false"/>
6876
+ <line number="15" hits="11" branch="false"/>
6877
+ <line number="16" hits="11" branch="false"/>
6878
+ <line number="17" hits="11" branch="false"/>
6879
+ <line number="19" hits="11" branch="false"/>
6880
+ <line number="21" hits="11" branch="false"/>
6881
+ <line number="22" hits="11" branch="false"/>
6882
+ <line number="23" hits="11" branch="false"/>
5794
6883
  <line number="25" hits="0" branch="false"/>
5795
- <line number="27" hits="13" branch="false"/>
5796
- <line number="30" hits="13" branch="false"/>
5797
- <line number="31" hits="13" branch="false"/>
5798
- <line number="33" hits="13" branch="false"/>
5799
- <line number="35" hits="13" branch="false"/>
5800
- <line number="42" hits="13" branch="true" condition-coverage="33.33333333333333% (1/3)"/>
6884
+ <line number="27" hits="11" branch="false"/>
6885
+ <line number="30" hits="11" branch="false"/>
6886
+ <line number="31" hits="11" branch="false"/>
6887
+ <line number="33" hits="11" branch="false"/>
6888
+ <line number="35" hits="11" branch="false"/>
6889
+ <line number="42" hits="11" branch="true" condition-coverage="33.33333333333333% (1/3)"/>
5801
6890
  <line number="43" hits="0" branch="false"/>
5802
- <line number="58" hits="34" branch="false"/>
5803
- <line number="60" hits="13" branch="false"/>
5804
- <line number="62" hits="34" branch="false"/>
5805
- <line number="71" hits="34" branch="true" condition-coverage="50% (1/2)"/>
5806
- <line number="77" hits="13" branch="false"/>
6891
+ <line number="58" hits="20" branch="false"/>
6892
+ <line number="60" hits="11" branch="false"/>
6893
+ <line number="62" hits="20" branch="false"/>
6894
+ <line number="71" hits="20" branch="true" condition-coverage="50% (1/2)"/>
6895
+ <line number="77" hits="11" branch="false"/>
5807
6896
  <line number="78" hits="0" branch="false"/>
5808
- <line number="86" hits="13" branch="false"/>
5809
- <line number="88" hits="13" branch="false"/>
6897
+ <line number="86" hits="11" branch="false"/>
6898
+ <line number="88" hits="11" branch="false"/>
5810
6899
  <line number="89" hits="0" branch="false"/>
5811
6900
  <line number="90" hits="0" branch="false"/>
5812
6901
  <line number="92" hits="0" branch="false"/>
5813
- <line number="96" hits="13" branch="false"/>
5814
- <line number="98" hits="11" branch="true" condition-coverage="50% (1/2)"/>
5815
- <line number="100" hits="11" branch="false"/>
5816
- <line number="103" hits="35" branch="false"/>
6902
+ <line number="96" hits="11" branch="false"/>
6903
+ <line number="98" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6904
+ <line number="100" hits="0" branch="false"/>
6905
+ <line number="103" hits="21" branch="false"/>
5817
6906
  </lines>
5818
6907
  </class>
5819
6908
  <class name="logBuffer.ts" filename="src/logging/logBuffer.ts" line-rate="1" branch-rate="1">
@@ -5828,70 +6917,72 @@
5828
6917
  <line number="17" hits="5"/>
5829
6918
  </lines>
5830
6919
  </method>
5831
- <method name="(anonymous_5)" hits="35" signature="()V">
6920
+ <method name="(anonymous_5)" hits="24" signature="()V">
5832
6921
  <lines>
5833
- <line number="11" hits="35"/>
6922
+ <line number="11" hits="24"/>
5834
6923
  </lines>
5835
6924
  </method>
5836
- <method name="(anonymous_6)" hits="17" signature="()V">
6925
+ <method name="(anonymous_6)" hits="15" signature="()V">
5837
6926
  <lines>
5838
- <line number="22" hits="17"/>
6927
+ <line number="22" hits="15"/>
5839
6928
  </lines>
5840
6929
  </method>
5841
6930
  </methods>
5842
6931
  <lines>
5843
- <line number="10" hits="17" branch="false"/>
5844
- <line number="11" hits="17" branch="false"/>
5845
- <line number="12" hits="35" branch="false"/>
6932
+ <line number="10" hits="15" branch="false"/>
6933
+ <line number="11" hits="15" branch="false"/>
6934
+ <line number="12" hits="24" branch="false"/>
5846
6935
  <line number="15" hits="2" branch="false"/>
5847
6936
  <line number="18" hits="5" branch="false"/>
5848
- <line number="22" hits="17" branch="false"/>
5849
- <line number="24" hits="17" branch="false"/>
6937
+ <line number="22" hits="15" branch="false"/>
6938
+ <line number="24" hits="15" branch="false"/>
5850
6939
  </lines>
5851
6940
  </class>
5852
6941
  </classes>
5853
6942
  </package>
5854
- <package name="src.utils" line-rate="0.6377" branch-rate="0.2087">
6943
+ <package name="src.utils" line-rate="0.6564" branch-rate="0.1764">
5855
6944
  <classes>
5856
- <class name="appDirs.ts" filename="src/utils/appDirs.ts" line-rate="0.4" branch-rate="0">
6945
+ <class name="appDirs.ts" filename="src/utils/appDirs.ts" line-rate="0.6666" branch-rate="0">
5857
6946
  <methods>
5858
6947
  <method name="(anonymous_7)" hits="0" signature="()V">
5859
6948
  <lines>
5860
6949
  <line number="12" hits="0"/>
5861
6950
  </lines>
5862
6951
  </method>
5863
- <method name="getAppDir" hits="0" signature="()V">
6952
+ <method name="(anonymous_8)" hits="0" signature="()V">
5864
6953
  <lines>
5865
6954
  <line number="19" hits="0"/>
5866
6955
  </lines>
5867
6956
  </method>
5868
- <method name="getAppFile" hits="0" signature="()V">
6957
+ <method name="(anonymous_9)" hits="0" signature="()V">
5869
6958
  <lines>
5870
6959
  <line number="30" hits="0"/>
5871
6960
  </lines>
5872
6961
  </method>
5873
- <method name="getAppDataDir" hits="0" signature="()V">
6962
+ <method name="(anonymous_10)" hits="0" signature="()V">
5874
6963
  <lines>
5875
- <line number="39" hits="0"/>
6964
+ <line number="37" hits="0"/>
5876
6965
  </lines>
5877
6966
  </method>
5878
- <method name="getAppLogDir" hits="0" signature="()V">
6967
+ <method name="(anonymous_11)" hits="0" signature="()V">
5879
6968
  <lines>
5880
- <line number="48" hits="0"/>
6969
+ <line number="45" hits="0"/>
5881
6970
  </lines>
5882
6971
  </method>
5883
6972
  </methods>
5884
6973
  <lines>
5885
- <line number="7" hits="13" branch="false"/>
5886
- <line number="8" hits="13" branch="false"/>
5887
- <line number="10" hits="13" branch="false"/>
5888
- <line number="12" hits="13" branch="false"/>
6974
+ <line number="7" hits="12" branch="false"/>
6975
+ <line number="8" hits="12" branch="false"/>
6976
+ <line number="10" hits="12" branch="false"/>
6977
+ <line number="12" hits="12" branch="false"/>
6978
+ <line number="19" hits="12" branch="false"/>
5889
6979
  <line number="20" hits="0" branch="true" condition-coverage="0% (0/10)"/>
5890
6980
  <line number="21" hits="0" branch="false"/>
5891
- <line number="31" hits="0" branch="false"/>
5892
- <line number="40" hits="0" branch="false"/>
5893
- <line number="49" hits="0" branch="false"/>
5894
- <line number="52" hits="0" branch="false"/>
6981
+ <line number="30" hits="12" branch="false"/>
6982
+ <line number="37" hits="12" branch="false"/>
6983
+ <line number="38" hits="0" branch="false"/>
6984
+ <line number="45" hits="12" branch="false"/>
6985
+ <line number="47" hits="0" branch="false"/>
5895
6986
  </lines>
5896
6987
  </class>
5897
6988
  <class name="classNames.ts" filename="src/utils/classNames.ts" line-rate="1" branch-rate="1">
@@ -5920,23 +7011,6 @@
5920
7011
  <line number="8" hits="1" branch="false"/>
5921
7012
  </lines>
5922
7013
  </class>
5923
- <class name="describeVersion.ts" filename="src/utils/describeVersion.ts" line-rate="0.1666" branch-rate="0">
5924
- <methods>
5925
- <method name="(anonymous_1)" hits="0" signature="()V">
5926
- <lines>
5927
- <line number="9" hits="0"/>
5928
- </lines>
5929
- </method>
5930
- </methods>
5931
- <lines>
5932
- <line number="9" hits="2" branch="false"/>
5933
- <line number="10" hits="0" branch="true" condition-coverage="0% (0/1)"/>
5934
- <line number="11" hits="0" branch="false"/>
5935
- <line number="14" hits="0" branch="true" condition-coverage="0% (0/3)"/>
5936
- <line number="17" hits="0" branch="false"/>
5937
- <line number="19" hits="0" branch="false"/>
5938
- </lines>
5939
- </class>
5940
7014
  <class name="environment.ts" filename="src/utils/environment.ts" line-rate="1" branch-rate="1">
5941
7015
  <methods>
5942
7016
  </methods>
@@ -5958,10 +7032,10 @@
5958
7032
  </method>
5959
7033
  </methods>
5960
7034
  <lines>
5961
- <line number="7" hits="13" branch="false"/>
5962
- <line number="8" hits="13" branch="false"/>
5963
- <line number="9" hits="13" branch="false"/>
5964
- <line number="10" hits="13" branch="false"/>
7035
+ <line number="7" hits="12" branch="false"/>
7036
+ <line number="8" hits="12" branch="false"/>
7037
+ <line number="9" hits="12" branch="false"/>
7038
+ <line number="10" hits="12" branch="false"/>
5965
7039
  <line number="19" hits="0" branch="false"/>
5966
7040
  <line number="20" hits="0" branch="true" condition-coverage="0% (0/1)"/>
5967
7041
  <line number="21" hits="0" branch="false"/>
@@ -6050,9 +7124,9 @@
6050
7124
  <line number="103" hits="0"/>
6051
7125
  </lines>
6052
7126
  </method>
6053
- <method name="(anonymous_34)" hits="12" signature="()V">
7127
+ <method name="(anonymous_34)" hits="9" signature="()V">
6054
7128
  <lines>
6055
- <line number="105" hits="12"/>
7129
+ <line number="105" hits="9"/>
6056
7130
  </lines>
6057
7131
  </method>
6058
7132
  <method name="(anonymous_35)" hits="7" signature="()V">
@@ -6072,58 +7146,58 @@
6072
7146
  </method>
6073
7147
  </methods>
6074
7148
  <lines>
6075
- <line number="8" hits="12" branch="false"/>
6076
- <line number="10" hits="12" branch="false"/>
6077
- <line number="12" hits="12" branch="false"/>
6078
- <line number="13" hits="12" branch="false"/>
6079
- <line number="28" hits="12" branch="false"/>
6080
- <line number="38" hits="12" branch="false"/>
7149
+ <line number="8" hits="11" branch="false"/>
7150
+ <line number="10" hits="11" branch="false"/>
7151
+ <line number="12" hits="11" branch="false"/>
7152
+ <line number="13" hits="11" branch="false"/>
7153
+ <line number="28" hits="11" branch="false"/>
7154
+ <line number="38" hits="11" branch="false"/>
6081
7155
  <line number="39" hits="0" branch="false"/>
6082
- <line number="40" hits="12" branch="false"/>
7156
+ <line number="40" hits="11" branch="false"/>
6083
7157
  <line number="41" hits="9" branch="false"/>
6084
- <line number="43" hits="12" branch="false"/>
7158
+ <line number="43" hits="11" branch="false"/>
6085
7159
  <line number="44" hits="0" branch="false"/>
6086
- <line number="45" hits="12" branch="false"/>
7160
+ <line number="45" hits="11" branch="false"/>
6087
7161
  <line number="46" hits="9" branch="false"/>
6088
- <line number="48" hits="12" branch="false"/>
7162
+ <line number="48" hits="11" branch="false"/>
6089
7163
  <line number="52" hits="0" branch="false"/>
6090
- <line number="56" hits="12" branch="false"/>
7164
+ <line number="56" hits="11" branch="false"/>
6091
7165
  <line number="59" hits="9" branch="false"/>
6092
7166
  <line number="60" hits="9" branch="false"/>
6093
7167
  <line number="63" hits="9" branch="false"/>
6094
- <line number="65" hits="12" branch="false"/>
7168
+ <line number="65" hits="11" branch="false"/>
6095
7169
  <line number="70" hits="0" branch="false"/>
6096
- <line number="74" hits="12" branch="false"/>
7170
+ <line number="74" hits="11" branch="false"/>
6097
7171
  <line number="78" hits="0" branch="false"/>
6098
7172
  <line number="81" hits="0" branch="false"/>
6099
- <line number="86" hits="12" branch="false"/>
7173
+ <line number="86" hits="11" branch="false"/>
6100
7174
  <line number="87" hits="0" branch="false"/>
6101
- <line number="88" hits="12" branch="false"/>
7175
+ <line number="88" hits="11" branch="false"/>
6102
7176
  <line number="89" hits="3" branch="false"/>
6103
- <line number="90" hits="12" branch="false"/>
7177
+ <line number="90" hits="11" branch="false"/>
6104
7178
  <line number="91" hits="0" branch="false"/>
6105
- <line number="93" hits="12" branch="false"/>
6106
- <line number="94" hits="12" branch="false"/>
7179
+ <line number="93" hits="11" branch="false"/>
7180
+ <line number="94" hits="11" branch="false"/>
6107
7181
  <line number="95" hits="0" branch="false"/>
6108
7182
  <line number="96" hits="0" branch="false"/>
6109
7183
  <line number="98" hits="0" branch="false"/>
6110
- <line number="100" hits="12" branch="false"/>
7184
+ <line number="100" hits="11" branch="false"/>
6111
7185
  <line number="101" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6112
- <line number="103" hits="12" branch="false"/>
7186
+ <line number="103" hits="11" branch="false"/>
6113
7187
  <line number="104" hits="0" branch="false"/>
6114
- <line number="105" hits="12" branch="false"/>
6115
- <line number="106" hits="12" branch="false"/>
6116
- <line number="116" hits="12" branch="false"/>
7188
+ <line number="105" hits="11" branch="false"/>
7189
+ <line number="106" hits="9" branch="false"/>
7190
+ <line number="116" hits="11" branch="false"/>
6117
7191
  <line number="123" hits="7" branch="true" condition-coverage="100% (1/1)"/>
6118
7192
  <line number="124" hits="3" branch="false"/>
6119
7193
  <line number="133" hits="7" branch="false"/>
6120
- <line number="138" hits="12" branch="false"/>
7194
+ <line number="138" hits="11" branch="false"/>
6121
7195
  <line number="139" hits="1" branch="false"/>
6122
- <line number="143" hits="12" branch="false"/>
7196
+ <line number="143" hits="11" branch="false"/>
6123
7197
  <line number="144" hits="1" branch="false"/>
6124
7198
  </lines>
6125
7199
  </class>
6126
- <class name="systemReport.ts" filename="src/utils/systemReport.ts" line-rate="0.4054" branch-rate="0">
7200
+ <class name="systemReport.ts" filename="src/utils/systemReport.ts" line-rate="0.37829999999999997" branch-rate="0">
6127
7201
  <methods>
6128
7202
  <method name="(anonymous_4)" hits="0" signature="()V">
6129
7203
  <lines>
@@ -6132,22 +7206,22 @@
6132
7206
  </method>
6133
7207
  <method name="(anonymous_7)" hits="0" signature="()V">
6134
7208
  <lines>
6135
- <line number="99" hits="0"/>
7209
+ <line number="93" hits="0"/>
6136
7210
  </lines>
6137
7211
  </method>
6138
7212
  <method name="(anonymous_8)" hits="0" signature="()V">
6139
7213
  <lines>
6140
- <line number="104" hits="0"/>
7214
+ <line number="98" hits="0"/>
6141
7215
  </lines>
6142
7216
  </method>
6143
7217
  <method name="(anonymous_9)" hits="0" signature="()V">
6144
7218
  <lines>
6145
- <line number="121" hits="0"/>
7219
+ <line number="115" hits="0"/>
6146
7220
  </lines>
6147
7221
  </method>
6148
7222
  <method name="(anonymous_10)" hits="0" signature="()V">
6149
7223
  <lines>
6150
- <line number="135" hits="0"/>
7224
+ <line number="129" hits="0"/>
6151
7225
  </lines>
6152
7226
  </method>
6153
7227
  </methods>
@@ -6156,10 +7230,9 @@
6156
7230
  <line number="8" hits="2" branch="false"/>
6157
7231
  <line number="9" hits="2" branch="false"/>
6158
7232
  <line number="10" hits="2" branch="false"/>
6159
- <line number="11" hits="2" branch="false"/>
7233
+ <line number="13" hits="2" branch="false"/>
6160
7234
  <line number="17" hits="2" branch="false"/>
6161
7235
  <line number="21" hits="2" branch="false"/>
6162
- <line number="22" hits="2" branch="false"/>
6163
7236
  <line number="23" hits="2" branch="false"/>
6164
7237
  <line number="24" hits="2" branch="false"/>
6165
7238
  <line number="25" hits="2" branch="false"/>
@@ -6167,28 +7240,29 @@
6167
7240
  <line number="29" hits="0" branch="false"/>
6168
7241
  <line number="45" hits="0" branch="false"/>
6169
7242
  <line number="55" hits="0" branch="false"/>
6170
- <line number="59" hits="0" branch="false"/>
6171
- <line number="93" hits="0" branch="true" condition-coverage="0% (0/1)"/>
6172
- <line number="97" hits="0" branch="false"/>
6173
- <line number="99" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6174
- <line number="104" hits="2" branch="false"/>
6175
- <line number="105" hits="0" branch="true" condition-coverage="0% (0/1)"/>
6176
- <line number="106" hits="0" branch="false"/>
6177
- <line number="109" hits="0" branch="false"/>
6178
- <line number="111" hits="0" branch="false"/>
6179
- <line number="121" hits="2" branch="false"/>
6180
- <line number="127" hits="0" branch="false"/>
6181
- <line number="135" hits="2" branch="false"/>
6182
- <line number="140" hits="0" branch="false"/>
6183
- <line number="141" hits="0" branch="false"/>
6184
- <line number="142" hits="0" branch="false"/>
7243
+ <line number="56" hits="0" branch="false"/>
7244
+ <line number="58" hits="0" branch="false"/>
7245
+ <line number="87" hits="0" branch="true" condition-coverage="0% (0/1)"/>
7246
+ <line number="91" hits="0" branch="false"/>
7247
+ <line number="93" hits="0" branch="true" condition-coverage="0% (0/4)"/>
7248
+ <line number="98" hits="2" branch="false"/>
7249
+ <line number="99" hits="0" branch="true" condition-coverage="0% (0/1)"/>
7250
+ <line number="100" hits="0" branch="false"/>
7251
+ <line number="103" hits="0" branch="false"/>
7252
+ <line number="105" hits="0" branch="false"/>
7253
+ <line number="115" hits="2" branch="false"/>
7254
+ <line number="121" hits="0" branch="false"/>
7255
+ <line number="129" hits="2" branch="false"/>
7256
+ <line number="134" hits="0" branch="false"/>
7257
+ <line number="135" hits="0" branch="false"/>
7258
+ <line number="136" hits="0" branch="false"/>
7259
+ <line number="143" hits="0" branch="false"/>
7260
+ <line number="144" hits="0" branch="false"/>
7261
+ <line number="146" hits="0" branch="false"/>
7262
+ <line number="147" hits="0" branch="false"/>
7263
+ <line number="148" hits="0" branch="false"/>
6185
7264
  <line number="149" hits="0" branch="false"/>
6186
- <line number="150" hits="0" branch="false"/>
6187
- <line number="152" hits="0" branch="false"/>
6188
- <line number="153" hits="0" branch="false"/>
6189
- <line number="154" hits="0" branch="false"/>
6190
- <line number="155" hits="0" branch="false"/>
6191
- <line number="157" hits="0" branch="false"/>
7265
+ <line number="151" hits="0" branch="false"/>
6192
7266
  </lines>
6193
7267
  </class>
6194
7268
  <class name="truncateMiddle.ts" filename="src/utils/truncateMiddle.ts" line-rate="1" branch-rate="1">
@@ -6209,7 +7283,7 @@
6209
7283
  <line number="20" hits="5" branch="false"/>
6210
7284
  </lines>
6211
7285
  </class>
6212
- <class name="usageData.ts" filename="src/utils/usageData.ts" line-rate="0.38880000000000003" branch-rate="0.1304">
7286
+ <class name="usageData.ts" filename="src/utils/usageData.ts" line-rate="0.4" branch-rate="0.0909">
6213
7287
  <methods>
6214
7288
  <method name="(anonymous_11)" hits="3" signature="()V">
6215
7289
  <lines>
@@ -6266,10 +7340,14 @@
6266
7340
  <line number="176" hits="0"/>
6267
7341
  </lines>
6268
7342
  </method>
7343
+ <method name="(anonymous_22)" hits="1" signature="()V">
7344
+ <lines>
7345
+ <line number="188" hits="1"/>
7346
+ </lines>
7347
+ </method>
6269
7348
  </methods>
6270
7349
  <lines>
6271
7350
  <line number="7" hits="4" branch="false"/>
6272
- <line number="11" hits="4" branch="false"/>
6273
7351
  <line number="12" hits="4" branch="false"/>
6274
7352
  <line number="18" hits="4" branch="false"/>
6275
7353
  <line number="20" hits="4" branch="false"/>
@@ -6286,30 +7364,30 @@
6286
7364
  <line number="58" hits="0" branch="false"/>
6287
7365
  <line number="62" hits="0" branch="false"/>
6288
7366
  <line number="63" hits="0" branch="false"/>
6289
- <line number="70" hits="0" branch="false"/>
7367
+ <line number="70" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6290
7368
  <line number="75" hits="0" branch="false"/>
6291
7369
  <line number="77" hits="0" branch="false"/>
6292
7370
  <line number="78" hits="0" branch="false"/>
6293
7371
  <line number="87" hits="4" branch="false"/>
6294
- <line number="88" hits="3" branch="false"/>
7372
+ <line number="88" hits="3" branch="true" condition-coverage="75% (3/4)"/>
6295
7373
  <line number="93" hits="3" branch="false"/>
6296
7374
  <line number="101" hits="4" branch="false"/>
6297
7375
  <line number="102" hits="0" branch="false"/>
6298
- <line number="103" hits="0" branch="false"/>
7376
+ <line number="103" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6299
7377
  <line number="104" hits="0" branch="false"/>
6300
7378
  <line number="112" hits="4" branch="false"/>
6301
7379
  <line number="113" hits="0" branch="false"/>
6302
- <line number="114" hits="0" branch="false"/>
7380
+ <line number="114" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6303
7381
  <line number="122" hits="4" branch="false"/>
6304
7382
  <line number="123" hits="0" branch="false"/>
6305
- <line number="124" hits="0" branch="false"/>
7383
+ <line number="124" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6306
7384
  <line number="133" hits="4" branch="false"/>
6307
7385
  <line number="134" hits="0" branch="false"/>
6308
- <line number="135" hits="0" branch="false"/>
7386
+ <line number="135" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6309
7387
  <line number="144" hits="4" branch="false"/>
6310
7388
  <line number="145" hits="0" branch="false"/>
6311
7389
  <line number="147" hits="0" branch="true" condition-coverage="0% (0/3)"/>
6312
- <line number="148" hits="0" branch="false"/>
7390
+ <line number="148" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6313
7391
  <line number="149" hits="0" branch="false"/>
6314
7392
  <line number="162" hits="4" branch="false"/>
6315
7393
  <line number="163" hits="0" branch="false"/>
@@ -6318,10 +7396,12 @@
6318
7396
  <line number="167" hits="0" branch="false"/>
6319
7397
  <line number="168" hits="0" branch="false"/>
6320
7398
  <line number="176" hits="4" branch="false"/>
6321
- <line number="177" hits="0" branch="false"/>
7399
+ <line number="177" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6322
7400
  <line number="178" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6323
7401
  <line number="181" hits="0" branch="false"/>
6324
- <line number="187" hits="4" branch="false"/>
7402
+ <line number="188" hits="4" branch="false"/>
7403
+ <line number="189" hits="1" branch="false"/>
7404
+ <line number="192" hits="4" branch="false"/>
6325
7405
  </lines>
6326
7406
  </class>
6327
7407
  <class name="useHotKey.ts" filename="src/utils/useHotKey.ts" line-rate="0.7916" branch-rate="0.6">