@nordicsemiconductor/pc-nrfconnect-shared 88.0.0 → 90.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 (149) hide show
  1. package/Changelog.md +34 -0
  2. package/config/tsconfig.json +1 -1
  3. package/coverage/cobertura-coverage.xml +2216 -1061
  4. package/ipc/MetaFiles.ts +17 -7
  5. package/nrfutil/device/__mocks__/device.ts +43 -0
  6. package/nrfutil/device/batch.ts +219 -0
  7. package/nrfutil/device/batchTypes.ts +133 -0
  8. package/nrfutil/device/common.ts +274 -0
  9. package/nrfutil/device/device.ts +62 -0
  10. package/nrfutil/device/erase.ts +26 -0
  11. package/nrfutil/device/eraseBatch.ts +28 -0
  12. package/nrfutil/device/firmwareRead.ts +34 -0
  13. package/nrfutil/device/firmwareReadBatch.ts +42 -0
  14. package/nrfutil/device/getCoreInfo.ts +44 -0
  15. package/nrfutil/device/getCoreInfoBatch.ts +29 -0
  16. package/nrfutil/device/getFwInfo.ts +69 -0
  17. package/nrfutil/device/getFwInfoBatch.ts +29 -0
  18. package/nrfutil/device/getProtectionStatus.ts +46 -0
  19. package/nrfutil/device/getProtectionStatusBatch.ts +32 -0
  20. package/nrfutil/device/list.ts +81 -0
  21. package/nrfutil/device/program.ts +186 -0
  22. package/nrfutil/device/programBatch.ts +69 -0
  23. package/nrfutil/device/recover.ts +26 -0
  24. package/nrfutil/device/recoverBatch.ts +28 -0
  25. package/nrfutil/device/reset.ts +41 -0
  26. package/nrfutil/device/resetBatch.ts +30 -0
  27. package/nrfutil/device/setMcuState.ts +27 -0
  28. package/nrfutil/device/setProtectionStatus.ts +27 -0
  29. package/nrfutil/index.ts +25 -0
  30. package/nrfutil/moduleVersion.ts +57 -0
  31. package/nrfutil/nrfutilLogger.ts +15 -0
  32. package/nrfutil/sandbox.ts +504 -0
  33. package/nrfutil/sandboxTypes.ts +178 -0
  34. package/package.json +2 -2
  35. package/scripts/nordic-publish.js +1 -1
  36. package/scripts/nordic-publish.ts +11 -2
  37. package/src/About/SupportCard.tsx +6 -9
  38. package/src/App/App.test.tsx +4 -0
  39. package/src/App/App.tsx +13 -2
  40. package/src/Device/DeviceSelector/DeviceList/MoreDeviceInfo.tsx +1 -1
  41. package/src/Device/DeviceSelector/DeviceSelector.test.tsx +39 -31
  42. package/src/Device/DeviceSelector/DeviceSelector.tsx +3 -12
  43. package/src/Device/deviceInfo/deviceInfo.ts +2 -3
  44. package/src/Device/deviceLibWrapper.ts +0 -66
  45. package/src/Device/deviceLister.test.ts +1 -2
  46. package/src/Device/deviceLister.ts +169 -215
  47. package/src/Device/deviceSlice.ts +2 -16
  48. package/src/Device/jprogOperations.ts +21 -69
  49. package/src/Device/sdfuOperations.ts +77 -93
  50. package/src/ErrorBoundary/ErrorBoundary.tsx +1 -1
  51. package/src/Log/LogViewer.tsx +0 -4
  52. package/src/Log/logSlice.ts +4 -7
  53. package/src/logging/sendInitialLogMessages.ts +7 -8
  54. package/src/utils/appDirs.ts +6 -11
  55. package/src/utils/logLibVersions.ts +12 -14
  56. package/src/utils/systemReport.ts +11 -17
  57. package/src/utils/usageData.ts +14 -9
  58. package/tsconfig.json +1 -0
  59. package/typings/generated/ipc/MetaFiles.d.ts +14 -7
  60. package/typings/generated/ipc/MetaFiles.d.ts.map +1 -1
  61. package/typings/generated/nrfutil/device/__mocks__/device.d.ts +23 -0
  62. package/typings/generated/nrfutil/device/__mocks__/device.d.ts.map +1 -0
  63. package/typings/generated/nrfutil/device/batch.d.ts +26 -0
  64. package/typings/generated/nrfutil/device/batch.d.ts.map +1 -0
  65. package/typings/generated/nrfutil/device/batchTypes.d.ts +78 -0
  66. package/typings/generated/nrfutil/device/batchTypes.d.ts.map +1 -0
  67. package/typings/generated/nrfutil/device/common.d.ts +125 -0
  68. package/typings/generated/nrfutil/device/common.d.ts.map +1 -0
  69. package/typings/generated/nrfutil/device/device.d.ts +30 -0
  70. package/typings/generated/nrfutil/device/device.d.ts.map +1 -0
  71. package/typings/generated/nrfutil/device/erase.d.ts +5 -0
  72. package/typings/generated/nrfutil/device/erase.d.ts.map +1 -0
  73. package/typings/generated/nrfutil/device/eraseBatch.d.ts +7 -0
  74. package/typings/generated/nrfutil/device/eraseBatch.d.ts.map +1 -0
  75. package/typings/generated/nrfutil/device/firmwareRead.d.ts +10 -0
  76. package/typings/generated/nrfutil/device/firmwareRead.d.ts.map +1 -0
  77. package/typings/generated/nrfutil/device/firmwareReadBatch.d.ts +9 -0
  78. package/typings/generated/nrfutil/device/firmwareReadBatch.d.ts.map +1 -0
  79. package/typings/generated/nrfutil/device/getCoreInfo.d.ts +22 -0
  80. package/typings/generated/nrfutil/device/getCoreInfo.d.ts.map +1 -0
  81. package/typings/generated/nrfutil/device/getCoreInfoBatch.d.ts +8 -0
  82. package/typings/generated/nrfutil/device/getCoreInfoBatch.d.ts.map +1 -0
  83. package/typings/generated/nrfutil/device/getFwInfo.d.ts +31 -0
  84. package/typings/generated/nrfutil/device/getFwInfo.d.ts.map +1 -0
  85. package/typings/generated/nrfutil/device/getFwInfoBatch.d.ts +8 -0
  86. package/typings/generated/nrfutil/device/getFwInfoBatch.d.ts.map +1 -0
  87. package/typings/generated/nrfutil/device/getProtectionStatus.d.ts +13 -0
  88. package/typings/generated/nrfutil/device/getProtectionStatus.d.ts.map +1 -0
  89. package/typings/generated/nrfutil/device/getProtectionStatusBatch.d.ts +8 -0
  90. package/typings/generated/nrfutil/device/getProtectionStatusBatch.d.ts.map +1 -0
  91. package/typings/generated/nrfutil/device/list.d.ts +19 -0
  92. package/typings/generated/nrfutil/device/list.d.ts.map +1 -0
  93. package/typings/generated/nrfutil/device/program.d.ts +27 -0
  94. package/typings/generated/nrfutil/device/program.d.ts.map +1 -0
  95. package/typings/generated/nrfutil/device/programBatch.d.ts +9 -0
  96. package/typings/generated/nrfutil/device/programBatch.d.ts.map +1 -0
  97. package/typings/generated/nrfutil/device/recover.d.ts +5 -0
  98. package/typings/generated/nrfutil/device/recover.d.ts.map +1 -0
  99. package/typings/generated/nrfutil/device/recoverBatch.d.ts +7 -0
  100. package/typings/generated/nrfutil/device/recoverBatch.d.ts.map +1 -0
  101. package/typings/generated/nrfutil/device/reset.d.ts +5 -0
  102. package/typings/generated/nrfutil/device/reset.d.ts.map +1 -0
  103. package/typings/generated/nrfutil/device/resetBatch.d.ts +8 -0
  104. package/typings/generated/nrfutil/device/resetBatch.d.ts.map +1 -0
  105. package/typings/generated/nrfutil/device/setMcuState.d.ts +6 -0
  106. package/typings/generated/nrfutil/device/setMcuState.d.ts.map +1 -0
  107. package/typings/generated/nrfutil/device/setProtectionStatus.d.ts +5 -0
  108. package/typings/generated/nrfutil/device/setProtectionStatus.d.ts.map +1 -0
  109. package/typings/generated/nrfutil/index.d.ts +11 -0
  110. package/typings/generated/nrfutil/index.d.ts.map +1 -0
  111. package/typings/generated/nrfutil/moduleVersion.d.ts +6 -0
  112. package/typings/generated/nrfutil/moduleVersion.d.ts.map +1 -0
  113. package/typings/generated/nrfutil/nrfutilLogger.d.ts +4 -0
  114. package/typings/generated/nrfutil/nrfutilLogger.d.ts.map +1 -0
  115. package/typings/generated/nrfutil/sandbox.d.ts +36 -0
  116. package/typings/generated/nrfutil/sandbox.d.ts.map +1 -0
  117. package/typings/generated/nrfutil/sandboxTypes.d.ts +135 -0
  118. package/typings/generated/nrfutil/sandboxTypes.d.ts.map +1 -0
  119. package/typings/generated/src/About/SupportCard.d.ts.map +1 -1
  120. package/typings/generated/src/App/App.d.ts.map +1 -1
  121. package/typings/generated/src/Device/DeviceSelector/DeviceSelector.d.ts +2 -6
  122. package/typings/generated/src/Device/DeviceSelector/DeviceSelector.d.ts.map +1 -1
  123. package/typings/generated/src/Device/deviceInfo/deviceInfo.d.ts +2 -2
  124. package/typings/generated/src/Device/deviceInfo/deviceInfo.d.ts.map +1 -1
  125. package/typings/generated/src/Device/deviceLibWrapper.d.ts +1 -4
  126. package/typings/generated/src/Device/deviceLibWrapper.d.ts.map +1 -1
  127. package/typings/generated/src/Device/deviceLister.d.ts +11 -16
  128. package/typings/generated/src/Device/deviceLister.d.ts.map +1 -1
  129. package/typings/generated/src/Device/deviceLister.test.d.ts.map +1 -1
  130. package/typings/generated/src/Device/deviceSlice.d.ts +3 -3
  131. package/typings/generated/src/Device/deviceSlice.d.ts.map +1 -1
  132. package/typings/generated/src/Device/jprogOperations.d.ts.map +1 -1
  133. package/typings/generated/src/Device/sdfuOperations.d.ts.map +1 -1
  134. package/typings/generated/src/ErrorBoundary/ErrorBoundary.d.ts +1 -1
  135. package/typings/generated/src/ErrorBoundary/ErrorBoundary.d.ts.map +1 -1
  136. package/typings/generated/src/Log/LogViewer.d.ts.map +1 -1
  137. package/typings/generated/src/Log/logSlice.d.ts +2 -3
  138. package/typings/generated/src/Log/logSlice.d.ts.map +1 -1
  139. package/typings/generated/src/logging/sendInitialLogMessages.d.ts.map +1 -1
  140. package/typings/generated/src/utils/appDirs.d.ts +4 -4
  141. package/typings/generated/src/utils/appDirs.d.ts.map +1 -1
  142. package/typings/generated/src/utils/logLibVersions.d.ts.map +1 -1
  143. package/typings/generated/src/utils/systemReport.d.ts +1 -1
  144. package/typings/generated/src/utils/systemReport.d.ts.map +1 -1
  145. package/typings/generated/src/utils/usageData.d.ts +2 -0
  146. package/typings/generated/src/utils/usageData.d.ts.map +1 -1
  147. package/src/utils/describeVersion.ts +0 -21
  148. package/typings/generated/src/utils/describeVersion.d.ts +0 -4
  149. 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="1692256971404" complexity="0" version="0.1">
3
+ <coverage lines-valid="2992" lines-covered="1665" line-rate="0.5564" branches-valid="1465" branches-covered="394" branch-rate="0.26890000000000003" timestamp="1692610533087" complexity="0" version="0.1">
4
4
  <sources>
5
5
  <source>/home/vsts/work/1/s</source>
6
6
  </sources>
@@ -305,95 +305,1362 @@
305
305
  <methods>
306
306
  </methods>
307
307
  <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"/>
308
+ <line number="7" hits="1" branch="false"/>
309
+ <line number="8" hits="1" branch="false"/>
310
+ <line number="9" hits="1" branch="false"/>
311
+ <line number="10" hits="1" branch="false"/>
312
+ <line number="11" hits="1" branch="false"/>
313
+ <line number="12" hits="1" branch="false"/>
314
+ <line number="14" hits="1" branch="false"/>
315
+ </lines>
316
+ </class>
317
+ <class name="electronMock.ts" filename="mocks/electronMock.ts" line-rate="1" branch-rate="1">
318
+ <methods>
319
+ </methods>
320
+ <lines>
321
+ <line number="9" hits="12" branch="false"/>
322
+ <line number="10" hits="12" branch="false"/>
323
+ <line number="11" hits="12" branch="false"/>
324
+ <line number="12" hits="33" branch="false"/>
325
+ </lines>
326
+ </class>
327
+ <class name="electronStoreMock.ts" filename="mocks/electronStoreMock.ts" line-rate="1" branch-rate="1">
328
+ <methods>
329
+ <method name="(anonymous_1)" hits="15" signature="()V">
330
+ <lines>
331
+ <line number="9" hits="15"/>
332
+ </lines>
333
+ </method>
334
+ <method name="(anonymous_2)" hits="43" signature="()V">
335
+ <lines>
336
+ <line number="13" hits="43"/>
337
+ </lines>
338
+ </method>
339
+ </methods>
340
+ <lines>
341
+ <line number="9" hits="15" branch="false"/>
342
+ <line number="10" hits="15" branch="false"/>
343
+ <line number="11" hits="15" branch="false"/>
344
+ <line number="14" hits="43" branch="true" condition-coverage="100% (4/4)"/>
345
+ </lines>
346
+ </class>
347
+ <class name="emptyMock.ts" filename="mocks/emptyMock.ts" line-rate="1" branch-rate="1">
348
+ <methods>
349
+ </methods>
350
+ <lines>
351
+ <line number="7" hits="11" branch="false"/>
352
+ </lines>
353
+ </class>
354
+ <class name="fileMock.ts" filename="mocks/fileMock.ts" line-rate="1" branch-rate="1">
355
+ <methods>
356
+ </methods>
357
+ <lines>
358
+ <line number="13" hits="122" branch="false"/>
359
+ </lines>
360
+ </class>
361
+ <class name="packageJsonMock.ts" filename="mocks/packageJsonMock.ts" line-rate="1" branch-rate="1">
362
+ <methods>
363
+ <method name="(anonymous_1)" hits="26" signature="()V">
364
+ <lines>
365
+ <line number="7" hits="26"/>
366
+ </lines>
367
+ </method>
368
+ </methods>
369
+ <lines>
370
+ <line number="7" hits="26" branch="false"/>
371
+ </lines>
372
+ </class>
373
+ <class name="remoteMock.ts" filename="mocks/remoteMock.ts" line-rate="0.6" branch-rate="1">
374
+ <methods>
375
+ <method name="(anonymous_4)" hits="1" signature="()V">
376
+ <lines>
377
+ <line number="10" hits="1"/>
378
+ </lines>
379
+ </method>
380
+ <method name="(anonymous_5)" hits="0" signature="()V">
381
+ <lines>
382
+ <line number="13" hits="0"/>
383
+ </lines>
384
+ </method>
385
+ <method name="(anonymous_6)" hits="0" signature="()V">
386
+ <lines>
387
+ <line number="16" hits="0"/>
388
+ </lines>
389
+ </method>
390
+ </methods>
391
+ <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"/>
397
+ </lines>
398
+ </class>
399
+ </classes>
400
+ </package>
401
+ <package name="nrfutil" line-rate="0.08710000000000001" branch-rate="0">
402
+ <classes>
403
+ <class name="moduleVersion.ts" filename="nrfutil/moduleVersion.ts" line-rate="0.29410000000000003" branch-rate="0">
404
+ <methods>
405
+ <method name="(anonymous_3)" hits="0" signature="()V">
406
+ <lines>
407
+ <line number="15" hits="0"/>
408
+ </lines>
409
+ </method>
410
+ <method name="(anonymous_4)" hits="0" signature="()V">
411
+ <lines>
412
+ <line number="33" hits="0"/>
413
+ </lines>
414
+ </method>
415
+ <method name="(anonymous_5)" hits="0" signature="()V">
416
+ <lines>
417
+ <line number="34" hits="0"/>
418
+ </lines>
419
+ </method>
420
+ <method name="(anonymous_6)" hits="0" signature="()V">
421
+ <lines>
422
+ <line number="36" hits="0"/>
423
+ </lines>
424
+ </method>
425
+ <method name="(anonymous_8)" hits="0" signature="()V">
426
+ <lines>
427
+ <line number="46" hits="0"/>
428
+ </lines>
429
+ </method>
430
+ <method name="(anonymous_9)" hits="0" signature="()V">
431
+ <lines>
432
+ <line number="53" hits="0"/>
433
+ </lines>
434
+ </method>
435
+ </methods>
436
+ <lines>
437
+ <line number="13" hits="2" branch="false"/>
438
+ <line number="15" hits="2" branch="false"/>
439
+ <line number="16" hits="0" branch="true" condition-coverage="0% (0/1)"/>
440
+ <line number="17" hits="0" branch="false"/>
441
+ <line number="20" hits="0" branch="true" condition-coverage="0% (0/1)"/>
442
+ <line number="21" hits="0" branch="false"/>
443
+ <line number="24" hits="0" branch="true" condition-coverage="0% (0/3)"/>
444
+ <line number="25" hits="0" branch="false"/>
445
+ <line number="28" hits="0" branch="false"/>
446
+ <line number="33" hits="2" branch="false"/>
447
+ <line number="34" hits="0" branch="false"/>
448
+ <line number="36" hits="2" branch="false"/>
449
+ <line number="40" hits="0" branch="true" condition-coverage="0% (0/1)"/>
450
+ <line number="43" hits="0" branch="false"/>
451
+ <line number="46" hits="0" branch="false"/>
452
+ <line number="53" hits="2" branch="false"/>
453
+ <line number="57" hits="0" branch="true" condition-coverage="0% (0/4)"/>
454
+ </lines>
455
+ </class>
456
+ <class name="nrfutilLogger.ts" filename="nrfutil/nrfutilLogger.ts" line-rate="1" branch-rate="1">
457
+ <methods>
458
+ <method name="(anonymous_3)" hits="1" signature="()V">
459
+ <lines>
460
+ <line number="11" hits="1"/>
461
+ </lines>
462
+ </method>
463
+ <method name="(anonymous_4)" hits="0" signature="()V">
464
+ <lines>
465
+ <line number="15" hits="0"/>
466
+ </lines>
467
+ </method>
468
+ </methods>
469
+ <lines>
470
+ <line number="11" hits="3" branch="false"/>
471
+ <line number="12" hits="1" branch="false"/>
472
+ <line number="15" hits="3" branch="false"/>
473
+ </lines>
474
+ </class>
475
+ <class name="sandbox.ts" filename="nrfutil/sandbox.ts" line-rate="0.0572" branch-rate="0">
476
+ <methods>
477
+ <method name="(anonymous_5)" hits="0" signature="()V">
478
+ <lines>
479
+ <line number="27" hits="0"/>
480
+ </lines>
481
+ </method>
482
+ <method name="(anonymous_6)" hits="0" signature="()V">
483
+ <lines>
484
+ <line number="39" hits="0"/>
485
+ </lines>
486
+ </method>
487
+ <method name="(anonymous_7)" hits="0" signature="()V">
488
+ <lines>
489
+ <line number="62" hits="0"/>
490
+ </lines>
491
+ </method>
492
+ <method name="(anonymous_8)" hits="0" signature="()V">
493
+ <lines>
494
+ <line number="79" hits="0"/>
495
+ </lines>
496
+ </method>
497
+ <method name="(anonymous_9)" hits="0" signature="()V">
498
+ <lines>
499
+ <line number="113" hits="0"/>
500
+ </lines>
501
+ </method>
502
+ <method name="(anonymous_10)" hits="0" signature="()V">
503
+ <lines>
504
+ <line number="121" hits="0"/>
505
+ </lines>
506
+ </method>
507
+ <method name="(anonymous_11)" hits="0" signature="()V">
508
+ <lines>
509
+ <line number="123" hits="0"/>
510
+ </lines>
511
+ </method>
512
+ <method name="(anonymous_12)" hits="0" signature="()V">
513
+ <lines>
514
+ <line number="130" hits="0"/>
515
+ </lines>
516
+ </method>
517
+ <method name="(anonymous_13)" hits="0" signature="()V">
518
+ <lines>
519
+ <line number="142" hits="0"/>
520
+ </lines>
521
+ </method>
522
+ <method name="(anonymous_14)" hits="0" signature="()V">
523
+ <lines>
524
+ <line number="163" hits="0"/>
525
+ </lines>
526
+ </method>
527
+ <method name="(anonymous_15)" hits="0" signature="()V">
528
+ <lines>
529
+ <line number="188" hits="0"/>
530
+ </lines>
531
+ </method>
532
+ <method name="(anonymous_16)" hits="0" signature="()V">
533
+ <lines>
534
+ <line number="203" hits="0"/>
535
+ </lines>
536
+ </method>
537
+ <method name="(anonymous_17)" hits="0" signature="()V">
538
+ <lines>
539
+ <line number="207" hits="0"/>
540
+ </lines>
541
+ </method>
542
+ <method name="(anonymous_18)" hits="0" signature="()V">
543
+ <lines>
544
+ <line number="211" hits="0"/>
545
+ </lines>
546
+ </method>
547
+ <method name="(anonymous_19)" hits="0" signature="()V">
548
+ <lines>
549
+ <line number="214" hits="0"/>
550
+ </lines>
551
+ </method>
552
+ <method name="(anonymous_20)" hits="0" signature="()V">
553
+ <lines>
554
+ <line number="215" hits="0"/>
555
+ </lines>
556
+ </method>
557
+ <method name="(anonymous_21)" hits="0" signature="()V">
558
+ <lines>
559
+ <line number="220" hits="0"/>
560
+ </lines>
561
+ </method>
562
+ <method name="(anonymous_22)" hits="0" signature="()V">
563
+ <lines>
564
+ <line number="226" hits="0"/>
565
+ </lines>
566
+ </method>
567
+ <method name="(anonymous_23)" hits="0" signature="()V">
568
+ <lines>
569
+ <line number="230" hits="0"/>
570
+ </lines>
571
+ </method>
572
+ <method name="(anonymous_24)" hits="0" signature="()V">
573
+ <lines>
574
+ <line number="232" hits="0"/>
575
+ </lines>
576
+ </method>
577
+ <method name="(anonymous_25)" hits="0" signature="()V">
578
+ <lines>
579
+ <line number="242" hits="0"/>
580
+ </lines>
581
+ </method>
582
+ <method name="(anonymous_26)" hits="0" signature="()V">
583
+ <lines>
584
+ <line number="243" hits="0"/>
585
+ </lines>
586
+ </method>
587
+ <method name="(anonymous_27)" hits="0" signature="()V">
588
+ <lines>
589
+ <line number="259" hits="0"/>
590
+ </lines>
591
+ </method>
592
+ <method name="(anonymous_29)" hits="0" signature="()V">
593
+ <lines>
594
+ <line number="283" hits="0"/>
595
+ </lines>
596
+ </method>
597
+ <method name="(anonymous_30)" hits="0" signature="()V">
598
+ <lines>
599
+ <line number="300" hits="0"/>
600
+ </lines>
601
+ </method>
602
+ <method name="(anonymous_31)" hits="0" signature="()V">
603
+ <lines>
604
+ <line number="314" hits="0"/>
605
+ </lines>
606
+ </method>
607
+ <method name="(anonymous_32)" hits="0" signature="()V">
608
+ <lines>
609
+ <line number="326" hits="0"/>
610
+ </lines>
611
+ </method>
612
+ <method name="(anonymous_33)" hits="0" signature="()V">
613
+ <lines>
614
+ <line number="330" hits="0"/>
615
+ </lines>
616
+ </method>
617
+ <method name="(anonymous_34)" hits="0" signature="()V">
618
+ <lines>
619
+ <line number="349" hits="0"/>
620
+ </lines>
621
+ </method>
622
+ <method name="(anonymous_35)" hits="0" signature="()V">
623
+ <lines>
624
+ <line number="361" hits="0"/>
625
+ </lines>
626
+ </method>
627
+ <method name="(anonymous_36)" hits="0" signature="()V">
628
+ <lines>
629
+ <line number="369" hits="0"/>
630
+ </lines>
631
+ </method>
632
+ <method name="(anonymous_37)" hits="0" signature="()V">
633
+ <lines>
634
+ <line number="377" hits="0"/>
635
+ </lines>
636
+ </method>
637
+ <method name="(anonymous_38)" hits="0" signature="()V">
638
+ <lines>
639
+ <line number="384" hits="0"/>
640
+ </lines>
641
+ </method>
642
+ <method name="(anonymous_39)" hits="0" signature="()V">
643
+ <lines>
644
+ <line number="386" hits="0"/>
645
+ </lines>
646
+ </method>
647
+ <method name="(anonymous_40)" hits="0" signature="()V">
648
+ <lines>
649
+ <line number="388" hits="0"/>
650
+ </lines>
651
+ </method>
652
+ <method name="(anonymous_41)" hits="0" signature="()V">
653
+ <lines>
654
+ <line number="390" hits="0"/>
655
+ </lines>
656
+ </method>
657
+ <method name="(anonymous_42)" hits="0" signature="()V">
658
+ <lines>
659
+ <line number="394" hits="0"/>
660
+ </lines>
661
+ </method>
662
+ <method name="(anonymous_43)" hits="0" signature="()V">
663
+ <lines>
664
+ <line number="398" hits="0"/>
665
+ </lines>
666
+ </method>
667
+ <method name="(anonymous_44)" hits="0" signature="()V">
668
+ <lines>
669
+ <line number="399" hits="0"/>
670
+ </lines>
671
+ </method>
672
+ <method name="(anonymous_45)" hits="0" signature="()V">
673
+ <lines>
674
+ <line number="402" hits="0"/>
675
+ </lines>
676
+ </method>
677
+ <method name="(anonymous_46)" hits="0" signature="()V">
678
+ <lines>
679
+ <line number="408" hits="0"/>
680
+ </lines>
681
+ </method>
682
+ <method name="(anonymous_47)" hits="0" signature="()V">
683
+ <lines>
684
+ <line number="427" hits="0"/>
685
+ </lines>
686
+ </method>
687
+ <method name="(anonymous_48)" hits="0" signature="()V">
688
+ <lines>
689
+ <line number="448" hits="0"/>
690
+ </lines>
691
+ </method>
692
+ <method name="(anonymous_49)" hits="0" signature="()V">
693
+ <lines>
694
+ <line number="451" hits="0"/>
695
+ </lines>
696
+ </method>
697
+ <method name="(anonymous_50)" hits="0" signature="()V">
698
+ <lines>
699
+ <line number="458" hits="0"/>
700
+ </lines>
701
+ </method>
702
+ <method name="(anonymous_51)" hits="0" signature="()V">
703
+ <lines>
704
+ <line number="463" hits="0"/>
705
+ </lines>
706
+ </method>
707
+ </methods>
708
+ <lines>
709
+ <line number="7" hits="3" branch="false"/>
710
+ <line number="8" hits="3" branch="false"/>
711
+ <line number="9" hits="3" branch="false"/>
712
+ <line number="10" hits="3" branch="false"/>
713
+ <line number="12" hits="3" branch="false"/>
714
+ <line number="13" hits="3" branch="false"/>
715
+ <line number="14" hits="3" branch="false"/>
716
+ <line number="27" hits="3" branch="false"/>
717
+ <line number="28" hits="0" branch="false"/>
718
+ <line number="29" hits="0" branch="true" condition-coverage="0% (0/1)"/>
719
+ <line number="30" hits="0" branch="false"/>
720
+ <line number="32" hits="0" branch="false"/>
721
+ <line number="33" hits="0" branch="true" condition-coverage="0% (0/4)"/>
722
+ <line number="35" hits="0" branch="false"/>
723
+ <line number="39" hits="3" branch="false"/>
724
+ <line number="40" hits="0" branch="false"/>
725
+ <line number="41" hits="0" branch="false"/>
726
+ <line number="42" hits="0" branch="false"/>
727
+ <line number="44" hits="0" branch="false"/>
728
+ <line number="46" hits="0" branch="true" condition-coverage="0% (0/1)"/>
729
+ <line number="50" hits="0" branch="false"/>
730
+ <line number="51" hits="0" branch="false"/>
731
+ <line number="52" hits="0" branch="false"/>
732
+ <line number="53" hits="0" branch="false"/>
733
+ <line number="54" hits="0" branch="false"/>
734
+ <line number="55" hits="0" branch="false"/>
735
+ <line number="56" hits="0" branch="false"/>
736
+ <line number="59" hits="0" branch="false"/>
737
+ <line number="62" hits="3" branch="false"/>
738
+ <line number="73" hits="0" branch="false"/>
739
+ <line number="75" hits="0" branch="true" condition-coverage="0% (0/1)"/>
740
+ <line number="76" hits="0" branch="false"/>
741
+ <line number="79" hits="0" branch="false"/>
742
+ <line number="80" hits="0" branch="true" condition-coverage="0% (0/6)"/>
743
+ <line number="82" hits="0" branch="true" condition-coverage="0% (0/4)"/>
744
+ <line number="83" hits="0" branch="false"/>
745
+ <line number="85" hits="0" branch="true" condition-coverage="0% (0/4)"/>
746
+ <line number="86" hits="0" branch="false"/>
747
+ <line number="88" hits="0" branch="true" condition-coverage="0% (0/4)"/>
748
+ <line number="89" hits="0" branch="false"/>
749
+ <line number="91" hits="0" branch="true" condition-coverage="0% (0/4)"/>
750
+ <line number="92" hits="0" branch="false"/>
751
+ <line number="94" hits="0" branch="true" condition-coverage="0% (0/4)"/>
752
+ <line number="95" hits="0" branch="false"/>
753
+ <line number="97" hits="0" branch="false"/>
754
+ <line number="98" hits="0" branch="false"/>
755
+ <line number="102" hits="0" branch="false"/>
756
+ <line number="105" hits="0" branch="false"/>
757
+ <line number="106" hits="0" branch="false"/>
758
+ <line number="107" hits="0" branch="false"/>
759
+ <line number="108" hits="0" branch="false"/>
760
+ <line number="109" hits="0" branch="false"/>
761
+ <line number="110" hits="0" branch="false"/>
762
+ <line number="111" hits="0" branch="false"/>
763
+ <line number="114" hits="0" branch="false"/>
764
+ <line number="115" hits="0" branch="false"/>
765
+ <line number="116" hits="0" branch="false"/>
766
+ <line number="118" hits="0" branch="false"/>
767
+ <line number="121" hits="0" branch="false"/>
768
+ <line number="122" hits="0" branch="true" condition-coverage="0% (0/1)"/>
769
+ <line number="123" hits="0" branch="false"/>
770
+ <line number="124" hits="0" branch="false"/>
771
+ <line number="127" hits="0" branch="false"/>
772
+ <line number="130" hits="0" branch="false"/>
773
+ <line number="131" hits="0" branch="false"/>
774
+ <line number="135" hits="0" branch="true" condition-coverage="0% (0/1)"/>
775
+ <line number="136" hits="0" branch="false"/>
776
+ <line number="139" hits="0" branch="false"/>
777
+ <line number="142" hits="0" branch="false"/>
778
+ <line number="143" hits="0" branch="true" condition-coverage="0% (0/1)"/>
779
+ <line number="157" hits="0" branch="false"/>
780
+ <line number="158" hits="0" branch="false"/>
781
+ <line number="160" hits="0" branch="false"/>
782
+ <line number="163" hits="0" branch="false"/>
783
+ <line number="166" hits="0" branch="false"/>
784
+ <line number="167" hits="0" branch="true" condition-coverage="0% (0/4)"/>
785
+ <line number="170" hits="0" branch="false"/>
786
+ <line number="175" hits="0" branch="true" condition-coverage="0% (0/4)"/>
787
+ <line number="179" hits="0" branch="true" condition-coverage="0% (0/4)"/>
788
+ <line number="184" hits="0" branch="false"/>
789
+ <line number="188" hits="0" branch="false"/>
790
+ <line number="196" hits="0" branch="false"/>
791
+ <line number="197" hits="0" branch="false"/>
792
+ <line number="199" hits="0" branch="false"/>
793
+ <line number="200" hits="0" branch="false"/>
794
+ <line number="204" hits="0" branch="false"/>
795
+ <line number="208" hits="0" branch="false"/>
796
+ <line number="209" hits="0" branch="true" condition-coverage="0% (0/4)"/>
797
+ <line number="212" hits="0" branch="false"/>
798
+ <line number="215" hits="0" branch="false"/>
799
+ <line number="216" hits="0" branch="false"/>
800
+ <line number="221" hits="0" branch="false"/>
801
+ <line number="226" hits="0" branch="true" condition-coverage="0% (0/1)"/>
802
+ <line number="227" hits="0" branch="false"/>
803
+ <line number="229" hits="0" branch="false"/>
804
+ <line number="230" hits="0" branch="false"/>
805
+ <line number="233" hits="0" branch="true" condition-coverage="0% (0/8)"/>
806
+ <line number="236" hits="0" branch="true" condition-coverage="0% (0/4)"/>
807
+ <line number="238" hits="0" branch="false"/>
808
+ <line number="239" hits="0" branch="false"/>
809
+ <line number="241" hits="0" branch="false"/>
810
+ <line number="242" hits="0" branch="true" condition-coverage="0% (0/2)"/>
811
+ <line number="243" hits="0" branch="false"/>
812
+ <line number="246" hits="0" branch="true" condition-coverage="0% (0/1)"/>
813
+ <line number="247" hits="0" branch="false"/>
814
+ <line number="250" hits="0" branch="true" condition-coverage="0% (0/1)"/>
815
+ <line number="251" hits="0" branch="false"/>
816
+ <line number="254" hits="0" branch="false"/>
817
+ <line number="255" hits="0" branch="false"/>
818
+ <line number="259" hits="0" branch="false"/>
819
+ <line number="267" hits="0" branch="false"/>
820
+ <line number="283" hits="0" branch="false"/>
821
+ <line number="284" hits="0" branch="false"/>
822
+ <line number="285" hits="0" branch="false"/>
823
+ <line number="300" hits="0" branch="false"/>
824
+ <line number="301" hits="0" branch="true" condition-coverage="0% (0/4)"/>
825
+ <line number="306" hits="0" branch="false"/>
826
+ <line number="307" hits="0" branch="false"/>
827
+ <line number="310" hits="0" branch="true" condition-coverage="0% (0/4)"/>
828
+ <line number="312" hits="0" branch="false"/>
829
+ <line number="314" hits="0" branch="false"/>
830
+ <line number="315" hits="0" branch="true" condition-coverage="0% (0/5)"/>
831
+ <line number="317" hits="0" branch="false"/>
832
+ <line number="318" hits="0" branch="false"/>
833
+ <line number="319" hits="0" branch="true" condition-coverage="0% (0/2)"/>
834
+ <line number="320" hits="0" branch="false"/>
835
+ <line number="322" hits="0" branch="false"/>
836
+ <line number="326" hits="0" branch="false"/>
837
+ <line number="327" hits="0" branch="false"/>
838
+ <line number="330" hits="0" branch="false"/>
839
+ <line number="331" hits="0" branch="true" condition-coverage="0% (0/4)"/>
840
+ <line number="332" hits="0" branch="true" condition-coverage="0% (0/1)"/>
841
+ <line number="333" hits="0" branch="false"/>
842
+ <line number="338" hits="0" branch="false"/>
843
+ <line number="341" hits="0" branch="true" condition-coverage="0% (0/2)"/>
844
+ <line number="342" hits="0" branch="false"/>
845
+ <line number="344" hits="0" branch="false"/>
846
+ <line number="349" hits="0" branch="false"/>
847
+ <line number="354" hits="0" branch="false"/>
848
+ <line number="355" hits="0" branch="false"/>
849
+ <line number="356" hits="0" branch="false"/>
850
+ <line number="358" hits="0" branch="false"/>
851
+ <line number="363" hits="0" branch="false"/>
852
+ <line number="365" hits="0" branch="true" condition-coverage="0% (0/1)"/>
853
+ <line number="366" hits="0" branch="false"/>
854
+ <line number="369" hits="0" branch="false"/>
855
+ <line number="370" hits="0" branch="true" condition-coverage="0% (0/1)"/>
856
+ <line number="371" hits="0" branch="true" condition-coverage="0% (0/1)"/>
857
+ <line number="372" hits="0" branch="false"/>
858
+ <line number="378" hits="0" branch="false"/>
859
+ <line number="383" hits="0" branch="false"/>
860
+ <line number="385" hits="0" branch="false"/>
861
+ <line number="386" hits="0" branch="false"/>
862
+ <line number="389" hits="0" branch="false"/>
863
+ <line number="390" hits="0" branch="false"/>
864
+ <line number="393" hits="0" branch="false"/>
865
+ <line number="395" hits="0" branch="false"/>
866
+ <line number="396" hits="0" branch="false"/>
867
+ <line number="398" hits="0" branch="false"/>
868
+ <line number="400" hits="0" branch="false"/>
869
+ <line number="402" hits="0" branch="false"/>
870
+ <line number="403" hits="0" branch="false"/>
871
+ <line number="408" hits="0" branch="false"/>
872
+ <line number="414" hits="0" branch="false"/>
873
+ <line number="421" hits="0" branch="true" condition-coverage="0% (0/1)"/>
874
+ <line number="422" hits="0" branch="false"/>
875
+ <line number="424" hits="0" branch="false"/>
876
+ <line number="427" hits="0" branch="false"/>
877
+ <line number="433" hits="0" branch="false"/>
878
+ <line number="442" hits="0" branch="true" condition-coverage="0% (0/1)"/>
879
+ <line number="443" hits="0" branch="false"/>
880
+ <line number="445" hits="0" branch="false"/>
881
+ <line number="448" hits="0" branch="false"/>
882
+ <line number="449" hits="0" branch="false"/>
883
+ <line number="451" hits="0" branch="false"/>
884
+ <line number="452" hits="0" branch="false"/>
885
+ <line number="458" hits="0" branch="false"/>
886
+ <line number="459" hits="0" branch="false"/>
887
+ <line number="463" hits="3" branch="false"/>
888
+ <line number="469" hits="0" branch="false"/>
889
+ <line number="471" hits="0" branch="true" condition-coverage="0% (0/1)"/>
890
+ <line number="476" hits="0" branch="false"/>
891
+ <line number="481" hits="0" branch="true" condition-coverage="0% (0/2)"/>
892
+ <line number="485" hits="0" branch="true" condition-coverage="0% (0/4)"/>
893
+ <line number="486" hits="0" branch="false"/>
894
+ <line number="489" hits="0" branch="false"/>
895
+ <line number="495" hits="0" branch="true" condition-coverage="0% (0/4)"/>
896
+ <line number="496" hits="0" branch="false"/>
897
+ <line number="498" hits="0" branch="true" condition-coverage="0% (0/1)"/>
898
+ <line number="499" hits="0" branch="false"/>
899
+ <line number="502" hits="0" branch="true" condition-coverage="0% (0/4)"/>
900
+ <line number="503" hits="0" branch="false"/>
901
+ </lines>
902
+ </class>
903
+ <class name="sandboxTypes.ts" filename="nrfutil/sandboxTypes.ts" line-rate="0" branch-rate="0">
904
+ <methods>
905
+ </methods>
906
+ <lines>
907
+ <line number="165" hits="0" branch="false"/>
908
+ <line number="168" hits="0" branch="true" condition-coverage="0% (0/4)"/>
909
+ <line number="170" hits="0" branch="false"/>
910
+ <line number="173" hits="0" branch="true" condition-coverage="0% (0/4)"/>
911
+ <line number="175" hits="0" branch="false"/>
912
+ <line number="178" hits="0" branch="true" condition-coverage="0% (0/4)"/>
913
+ </lines>
914
+ </class>
915
+ </classes>
916
+ </package>
917
+ <package name="nrfutil.device" line-rate="0.2876" branch-rate="0">
918
+ <classes>
919
+ <class name="batch.ts" filename="nrfutil/device/batch.ts" line-rate="0.1525" branch-rate="0">
920
+ <methods>
921
+ <method name="(anonymous_3)" hits="0" signature="()V">
922
+ <lines>
923
+ <line number="43" hits="0"/>
924
+ </lines>
925
+ </method>
926
+ <method name="(anonymous_4)" hits="0" signature="()V">
927
+ <lines>
928
+ <line number="51" hits="0"/>
929
+ </lines>
930
+ </method>
931
+ <method name="(anonymous_5)" hits="0" signature="()V">
932
+ <lines>
933
+ <line number="61" hits="0"/>
934
+ </lines>
935
+ </method>
936
+ <method name="(anonymous_6)" hits="0" signature="()V">
937
+ <lines>
938
+ <line number="74" hits="0"/>
939
+ </lines>
940
+ </method>
941
+ <method name="(anonymous_7)" hits="0" signature="()V">
942
+ <lines>
943
+ <line number="84" hits="0"/>
944
+ </lines>
945
+ </method>
946
+ <method name="(anonymous_8)" hits="0" signature="()V">
947
+ <lines>
948
+ <line number="97" hits="0"/>
949
+ </lines>
950
+ </method>
951
+ <method name="(anonymous_9)" hits="0" signature="()V">
952
+ <lines>
953
+ <line number="113" hits="0"/>
954
+ </lines>
955
+ </method>
956
+ <method name="(anonymous_10)" hits="0" signature="()V">
957
+ <lines>
958
+ <line number="121" hits="0"/>
959
+ </lines>
960
+ </method>
961
+ <method name="(anonymous_11)" hits="0" signature="()V">
962
+ <lines>
963
+ <line number="132" hits="0"/>
964
+ </lines>
965
+ </method>
966
+ <method name="(anonymous_12)" hits="0" signature="()V">
967
+ <lines>
968
+ <line number="145" hits="0"/>
969
+ </lines>
970
+ </method>
971
+ <method name="(anonymous_13)" hits="0" signature="()V">
972
+ <lines>
973
+ <line number="154" hits="0"/>
974
+ </lines>
975
+ </method>
976
+ <method name="(anonymous_14)" hits="0" signature="()V">
977
+ <lines>
978
+ <line number="170" hits="0"/>
979
+ </lines>
980
+ </method>
981
+ <method name="(anonymous_15)" hits="0" signature="()V">
982
+ <lines>
983
+ <line number="175" hits="0"/>
984
+ </lines>
985
+ </method>
986
+ <method name="(anonymous_16)" hits="0" signature="()V">
987
+ <lines>
988
+ <line number="179" hits="0"/>
989
+ </lines>
990
+ </method>
991
+ <method name="(anonymous_17)" hits="0" signature="()V">
992
+ <lines>
993
+ <line number="185" hits="0"/>
994
+ </lines>
995
+ </method>
996
+ <method name="(anonymous_18)" hits="0" signature="()V">
997
+ <lines>
998
+ <line number="186" hits="0"/>
999
+ </lines>
1000
+ </method>
1001
+ <method name="(anonymous_19)" hits="0" signature="()V">
1002
+ <lines>
1003
+ <line number="200" hits="0"/>
1004
+ </lines>
1005
+ </method>
1006
+ <method name="(anonymous_20)" hits="0" signature="()V">
1007
+ <lines>
1008
+ <line number="204" hits="0"/>
1009
+ </lines>
1010
+ </method>
1011
+ <method name="(anonymous_21)" hits="0" signature="()V">
1012
+ <lines>
1013
+ <line number="217" hits="0"/>
1014
+ </lines>
1015
+ </method>
1016
+ <method name="(anonymous_22)" hits="0" signature="()V">
1017
+ <lines>
1018
+ <line number="39" hits="0"/>
1019
+ </lines>
1020
+ </method>
1021
+ </methods>
1022
+ <lines>
1023
+ <line number="14" hits="3" branch="false"/>
1024
+ <line number="15" hits="3" branch="false"/>
1025
+ <line number="16" hits="3" branch="false"/>
1026
+ <line number="18" hits="3" branch="false"/>
1027
+ <line number="20" hits="3" branch="false"/>
1028
+ <line number="22" hits="3" branch="false"/>
1029
+ <line number="24" hits="3" branch="false"/>
1030
+ <line number="25" hits="3" branch="false"/>
1031
+ <line number="26" hits="3" branch="false"/>
1032
+ <line number="30" hits="0" branch="false"/>
1033
+ <line number="31" hits="0" branch="false"/>
1034
+ <line number="33" hits="0" branch="false"/>
1035
+ <line number="40" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1036
+ <line number="44" hits="0" branch="false"/>
1037
+ <line number="48" hits="0" branch="false"/>
1038
+ <line number="52" hits="0" branch="false"/>
1039
+ <line number="58" hits="0" branch="false"/>
1040
+ <line number="65" hits="0" branch="false"/>
1041
+ <line number="71" hits="0" branch="false"/>
1042
+ <line number="75" hits="0" branch="false"/>
1043
+ <line number="81" hits="0" branch="false"/>
1044
+ <line number="88" hits="0" branch="false"/>
1045
+ <line number="94" hits="0" branch="false"/>
1046
+ <line number="103" hits="0" branch="false"/>
1047
+ <line number="110" hits="0" branch="false"/>
1048
+ <line number="114" hits="0" branch="false"/>
1049
+ <line number="118" hits="0" branch="false"/>
1050
+ <line number="122" hits="0" branch="false"/>
1051
+ <line number="129" hits="0" branch="false"/>
1052
+ <line number="136" hits="0" branch="false"/>
1053
+ <line number="142" hits="0" branch="false"/>
1054
+ <line number="149" hits="0" branch="false"/>
1055
+ <line number="150" hits="0" branch="false"/>
1056
+ <line number="151" hits="0" branch="false"/>
1057
+ <line number="153" hits="0" branch="false"/>
1058
+ <line number="154" hits="0" branch="false"/>
1059
+ <line number="160" hits="0" branch="false"/>
1060
+ <line number="161" hits="0" branch="false"/>
1061
+ <line number="162" hits="0" branch="false"/>
1062
+ <line number="171" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1063
+ <line number="172" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1064
+ <line number="176" hits="0" branch="false"/>
1065
+ <line number="177" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1066
+ <line number="180" hits="0" branch="false"/>
1067
+ <line number="182" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1068
+ <line number="184" hits="0" branch="false"/>
1069
+ <line number="185" hits="0" branch="false"/>
1070
+ <line number="187" hits="0" branch="false"/>
1071
+ <line number="195" hits="0" branch="false"/>
1072
+ <line number="200" hits="0" branch="false"/>
1073
+ <line number="201" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1074
+ <line number="202" hits="0" branch="false"/>
1075
+ <line number="204" hits="0" branch="false"/>
1076
+ <line number="207" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1077
+ <line number="208" hits="0" branch="false"/>
1078
+ <line number="211" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1079
+ <line number="212" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1080
+ <line number="214" hits="0" branch="false"/>
1081
+ <line number="217" hits="0" branch="false"/>
1082
+ </lines>
1083
+ </class>
1084
+ <class name="batchTypes.ts" filename="nrfutil/device/batchTypes.ts" line-rate="0.2" branch-rate="0">
1085
+ <methods>
1086
+ <method name="(anonymous_3)" hits="0" signature="()V">
1087
+ <lines>
1088
+ <line number="36" hits="0"/>
1089
+ </lines>
1090
+ </method>
1091
+ <method name="(anonymous_4)" hits="0" signature="()V">
1092
+ <lines>
1093
+ <line number="47" hits="0"/>
1094
+ </lines>
1095
+ </method>
1096
+ </methods>
1097
+ <lines>
1098
+ <line number="14" hits="3" branch="false"/>
1099
+ <line number="36" hits="3" branch="false"/>
1100
+ <line number="37" hits="0" branch="true" condition-coverage="0% (0/3)"/>
1101
+ <line number="39" hits="0" branch="false"/>
1102
+ <line number="41" hits="0" branch="false"/>
1103
+ <line number="43" hits="0" branch="false"/>
1104
+ <line number="47" hits="3" branch="false"/>
1105
+ <line number="50" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1106
+ <line number="51" hits="0" branch="false"/>
1107
+ <line number="54" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1108
+ <line number="55" hits="0" branch="false"/>
1109
+ <line number="62" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1110
+ <line number="63" hits="0" branch="false"/>
1111
+ <line number="69" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1112
+ <line number="70" hits="0" branch="false"/>
1113
+ </lines>
1114
+ </class>
1115
+ <class name="common.ts" filename="nrfutil/device/common.ts" line-rate="0.1777" branch-rate="0">
1116
+ <methods>
1117
+ <method name="(anonymous_6)" hits="0" signature="()V">
1118
+ <lines>
1119
+ <line number="16" hits="0"/>
1120
+ </lines>
1121
+ </method>
1122
+ <method name="(anonymous_7)" hits="0" signature="()V">
1123
+ <lines>
1124
+ <line number="19" hits="0"/>
1125
+ </lines>
1126
+ </method>
1127
+ <method name="(anonymous_8)" hits="0" signature="()V">
1128
+ <lines>
1129
+ <line number="20" hits="0"/>
1130
+ </lines>
1131
+ </method>
1132
+ <method name="(anonymous_9)" hits="0" signature="()V">
1133
+ <lines>
1134
+ <line number="193" hits="0"/>
1135
+ </lines>
1136
+ </method>
1137
+ <method name="(anonymous_10)" hits="0" signature="()V">
1138
+ <lines>
1139
+ <line number="207" hits="0"/>
1140
+ </lines>
1141
+ </method>
1142
+ <method name="(anonymous_11)" hits="0" signature="()V">
1143
+ <lines>
1144
+ <line number="244" hits="0"/>
1145
+ </lines>
1146
+ </method>
1147
+ <method name="(anonymous_12)" hits="0" signature="()V">
1148
+ <lines>
1149
+ <line number="260" hits="0"/>
1150
+ </lines>
1151
+ </method>
1152
+ </methods>
1153
+ <lines>
1154
+ <line number="7" hits="3" branch="false"/>
1155
+ <line number="11" hits="3" branch="false"/>
1156
+ <line number="12" hits="3" branch="false"/>
1157
+ <line number="13" hits="3" branch="false"/>
1158
+ <line number="16" hits="3" branch="false"/>
1159
+ <line number="17" hits="0" branch="false"/>
1160
+ <line number="18" hits="0" branch="false"/>
1161
+ <line number="19" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1162
+ <line number="20" hits="0" branch="false"/>
1163
+ <line number="23" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1164
+ <line number="24" hits="0" branch="false"/>
1165
+ <line number="25" hits="0" branch="false"/>
1166
+ <line number="28" hits="0" branch="false"/>
1167
+ <line number="193" hits="3" branch="false"/>
1168
+ <line number="194" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1169
+ <line number="195" hits="0" branch="false"/>
1170
+ <line number="198" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1171
+ <line number="199" hits="0" branch="false"/>
1172
+ <line number="205" hits="0" branch="false"/>
1173
+ <line number="207" hits="0" branch="false"/>
1174
+ <line number="208" hits="0" branch="false"/>
1175
+ <line number="209" hits="0" branch="true" condition-coverage="0% (0/8)"/>
1176
+ <line number="211" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1177
+ <line number="212" hits="0" branch="false"/>
1178
+ <line number="214" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1179
+ <line number="215" hits="0" branch="false"/>
1180
+ <line number="217" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1181
+ <line number="218" hits="0" branch="false"/>
1182
+ <line number="220" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1183
+ <line number="221" hits="0" branch="false"/>
1184
+ <line number="223" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1185
+ <line number="224" hits="0" branch="false"/>
1186
+ <line number="226" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1187
+ <line number="227" hits="0" branch="false"/>
1188
+ <line number="231" hits="0" branch="false"/>
1189
+ <line number="235" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1190
+ <line number="237" hits="0" branch="false"/>
1191
+ <line number="240" hits="0" branch="false"/>
1192
+ <line number="241" hits="0" branch="false"/>
1193
+ <line number="244" hits="3" branch="false"/>
1194
+ <line number="251" hits="0" branch="false"/>
1195
+ <line number="252" hits="0" branch="false"/>
1196
+ <line number="260" hits="3" branch="false"/>
1197
+ <line number="267" hits="0" branch="false"/>
1198
+ <line number="268" hits="0" branch="false"/>
1199
+ </lines>
1200
+ </class>
1201
+ <class name="device.ts" filename="nrfutil/device/device.ts" line-rate="0.6206" branch-rate="0">
1202
+ <methods>
1203
+ <method name="(anonymous_2)" hits="0" signature="()V">
1204
+ <lines>
1205
+ <line number="22" hits="0"/>
1206
+ </lines>
1207
+ </method>
1208
+ <method name="(anonymous_3)" hits="0" signature="()V">
1209
+ <lines>
1210
+ <line number="27" hits="0"/>
1211
+ </lines>
1212
+ </method>
1213
+ <method name="(anonymous_4)" hits="0" signature="()V">
1214
+ <lines>
1215
+ <line number="32" hits="0"/>
1216
+ </lines>
1217
+ </method>
1218
+ <method name="(anonymous_5)" hits="0" signature="()V">
1219
+ <lines>
1220
+ <line number="40" hits="0"/>
1221
+ </lines>
1222
+ </method>
1223
+ <method name="(anonymous_6)" hits="0" signature="()V">
1224
+ <lines>
1225
+ <line number="61" hits="0"/>
1226
+ </lines>
1227
+ </method>
1228
+ </methods>
1229
+ <lines>
1230
+ <line number="8" hits="3" branch="false"/>
1231
+ <line number="9" hits="3" branch="false"/>
1232
+ <line number="10" hits="3" branch="false"/>
1233
+ <line number="11" hits="3" branch="false"/>
1234
+ <line number="12" hits="3" branch="false"/>
1235
+ <line number="13" hits="3" branch="false"/>
1236
+ <line number="14" hits="3" branch="false"/>
1237
+ <line number="15" hits="3" branch="false"/>
1238
+ <line number="16" hits="3" branch="false"/>
1239
+ <line number="17" hits="3" branch="false"/>
1240
+ <line number="18" hits="3" branch="false"/>
1241
+ <line number="19" hits="3" branch="false"/>
1242
+ <line number="20" hits="3" branch="false"/>
1243
+ <line number="22" hits="3" branch="false"/>
1244
+ <line number="23" hits="0" branch="false"/>
1245
+ <line number="24" hits="0" branch="false"/>
1246
+ <line number="27" hits="3" branch="false"/>
1247
+ <line number="28" hits="0" branch="false"/>
1248
+ <line number="29" hits="0" branch="false"/>
1249
+ <line number="32" hits="3" branch="false"/>
1250
+ <line number="33" hits="0" branch="false"/>
1251
+ <line number="34" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1252
+ <line number="35" hits="0" branch="false"/>
1253
+ <line number="37" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1254
+ <line number="40" hits="3" branch="false"/>
1255
+ <line number="41" hits="0" branch="false"/>
1256
+ <line number="42" hits="0" branch="false"/>
1257
+ <line number="45" hits="3" branch="false"/>
1258
+ <line number="61" hits="0" branch="false"/>
1259
+ </lines>
1260
+ </class>
1261
+ <class name="erase.ts" filename="nrfutil/device/erase.ts" line-rate="0.6666" branch-rate="0">
1262
+ <methods>
1263
+ <method name="(anonymous_1)" hits="0" signature="()V">
1264
+ <lines>
1265
+ <line number="14" hits="0"/>
1266
+ </lines>
1267
+ </method>
1268
+ </methods>
1269
+ <lines>
1270
+ <line number="12" hits="3" branch="false"/>
1271
+ <line number="14" hits="3" branch="false"/>
1272
+ <line number="20" hits="0" branch="false"/>
1273
+ </lines>
1274
+ </class>
1275
+ <class name="eraseBatch.ts" filename="nrfutil/device/eraseBatch.ts" line-rate="0.3333" branch-rate="0">
1276
+ <methods>
1277
+ </methods>
1278
+ <lines>
1279
+ <line number="12" hits="3" branch="false"/>
1280
+ <line number="15" hits="0" branch="false"/>
1281
+ <line number="20" hits="0" branch="false"/>
1282
+ </lines>
1283
+ </class>
1284
+ <class name="firmwareRead.ts" filename="nrfutil/device/firmwareRead.ts" line-rate="0.5" branch-rate="0">
1285
+ <methods>
1286
+ <method name="(anonymous_1)" hits="0" signature="()V">
1287
+ <lines>
1288
+ <line number="19" hits="0"/>
1289
+ </lines>
1290
+ </method>
1291
+ </methods>
1292
+ <lines>
1293
+ <line number="12" hits="3" branch="false"/>
1294
+ <line number="19" hits="3" branch="false"/>
1295
+ <line number="25" hits="0" branch="false"/>
1296
+ <line number="33" hits="0" branch="false"/>
1297
+ </lines>
1298
+ </class>
1299
+ <class name="firmwareReadBatch.ts" filename="nrfutil/device/firmwareReadBatch.ts" line-rate="0.1666" branch-rate="0">
1300
+ <methods>
1301
+ <method name="(anonymous_2)" hits="0" signature="()V">
1302
+ <lines>
1303
+ <line number="32" hits="0"/>
1304
+ </lines>
1305
+ </method>
1306
+ </methods>
1307
+ <lines>
1308
+ <line number="12" hits="3" branch="false"/>
1309
+ <line number="16" hits="0" branch="false"/>
1310
+ <line number="21" hits="0" branch="false"/>
1311
+ <line number="33" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1312
+ <line number="34" hits="0" branch="true" condition-coverage="0% (0/8)"/>
1313
+ <line number="39" hits="0" branch="true" condition-coverage="0% (0/8)"/>
1314
+ </lines>
1315
+ </class>
1316
+ <class name="getCoreInfo.ts" filename="nrfutil/device/getCoreInfo.ts" line-rate="0.6666" branch-rate="0">
1317
+ <methods>
1318
+ <method name="(anonymous_1)" hits="0" signature="()V">
1319
+ <lines>
1320
+ <line number="32" hits="0"/>
1321
+ </lines>
1322
+ </method>
1323
+ </methods>
1324
+ <lines>
1325
+ <line number="12" hits="3" branch="false"/>
1326
+ <line number="32" hits="3" branch="false"/>
1327
+ <line number="38" hits="0" branch="false"/>
1328
+ </lines>
1329
+ </class>
1330
+ <class name="getCoreInfoBatch.ts" filename="nrfutil/device/getCoreInfoBatch.ts" line-rate="0.3333" branch-rate="0">
1331
+ <methods>
1332
+ </methods>
1333
+ <lines>
1334
+ <line number="12" hits="3" branch="false"/>
1335
+ <line number="16" hits="0" branch="false"/>
1336
+ <line number="21" hits="0" branch="false"/>
1337
+ </lines>
1338
+ </class>
1339
+ <class name="getFwInfo.ts" filename="nrfutil/device/getFwInfo.ts" line-rate="0.6666" branch-rate="0">
1340
+ <methods>
1341
+ <method name="(anonymous_1)" hits="0" signature="()V">
1342
+ <lines>
1343
+ <line number="57" hits="0"/>
1344
+ </lines>
1345
+ </method>
1346
+ </methods>
1347
+ <lines>
1348
+ <line number="12" hits="3" branch="false"/>
1349
+ <line number="57" hits="3" branch="false"/>
1350
+ <line number="63" hits="0" branch="false"/>
1351
+ </lines>
1352
+ </class>
1353
+ <class name="getFwInfoBatch.ts" filename="nrfutil/device/getFwInfoBatch.ts" line-rate="0.3333" branch-rate="0">
1354
+ <methods>
1355
+ </methods>
1356
+ <lines>
1357
+ <line number="12" hits="3" branch="false"/>
1358
+ <line number="16" hits="0" branch="false"/>
1359
+ <line number="21" hits="0" branch="false"/>
1360
+ </lines>
1361
+ </class>
1362
+ <class name="getProtectionStatus.ts" filename="nrfutil/device/getProtectionStatus.ts" line-rate="0.6666" branch-rate="0">
1363
+ <methods>
1364
+ <method name="(anonymous_1)" hits="0" signature="()V">
1365
+ <lines>
1366
+ <line number="34" hits="0"/>
1367
+ </lines>
1368
+ </method>
1369
+ </methods>
1370
+ <lines>
1371
+ <line number="12" hits="3" branch="false"/>
1372
+ <line number="34" hits="3" branch="false"/>
1373
+ <line number="40" hits="0" branch="false"/>
315
1374
  </lines>
316
1375
  </class>
317
- <class name="electronMock.ts" filename="mocks/electronMock.ts" line-rate="1" branch-rate="1">
1376
+ <class name="getProtectionStatusBatch.ts" filename="nrfutil/device/getProtectionStatusBatch.ts" line-rate="0.3333" branch-rate="0">
318
1377
  <methods>
319
1378
  </methods>
320
1379
  <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"/>
1380
+ <line number="12" hits="3" branch="false"/>
1381
+ <line number="16" hits="0" branch="false"/>
1382
+ <line number="24" hits="0" branch="false"/>
325
1383
  </lines>
326
1384
  </class>
327
- <class name="electronStoreMock.ts" filename="mocks/electronStoreMock.ts" line-rate="1" branch-rate="1">
1385
+ <class name="list.ts" filename="nrfutil/device/list.ts" line-rate="0.1739" branch-rate="0">
328
1386
  <methods>
329
- <method name="(anonymous_1)" hits="16" signature="()V">
1387
+ <method name="(anonymous_1)" hits="0" signature="()V">
1388
+ <lines>
1389
+ <line number="25" hits="0"/>
1390
+ </lines>
1391
+ </method>
1392
+ <method name="(anonymous_2)" hits="0" signature="()V">
1393
+ <lines>
1394
+ <line number="28" hits="0"/>
1395
+ </lines>
1396
+ </method>
1397
+ <method name="(anonymous_3)" hits="0" signature="()V">
1398
+ <lines>
1399
+ <line number="32" hits="0"/>
1400
+ </lines>
1401
+ </method>
1402
+ <method name="(anonymous_4)" hits="0" signature="()V">
330
1403
  <lines>
331
- <line number="9" hits="16"/>
1404
+ <line number="48" hits="0"/>
332
1405
  </lines>
333
1406
  </method>
334
- <method name="(anonymous_2)" hits="46" signature="()V">
1407
+ <method name="(anonymous_5)" hits="0" signature="()V">
335
1408
  <lines>
336
- <line number="13" hits="46"/>
1409
+ <line number="52" hits="0"/>
337
1410
  </lines>
338
1411
  </method>
339
1412
  </methods>
340
1413
  <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)"/>
1414
+ <line number="13" hits="3" branch="false"/>
1415
+ <line number="25" hits="3" branch="false"/>
1416
+ <line number="26" hits="0" branch="false"/>
1417
+ <line number="28" hits="3" branch="false"/>
1418
+ <line number="30" hits="0" branch="false"/>
1419
+ <line number="32" hits="3" branch="false"/>
1420
+ <line number="41" hits="0" branch="false"/>
1421
+ <line number="42" hits="0" branch="false"/>
1422
+ <line number="44" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1423
+ <line number="45" hits="0" branch="false"/>
1424
+ <line number="48" hits="0" branch="false"/>
1425
+ <line number="49" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1426
+ <line number="50" hits="0" branch="false"/>
1427
+ <line number="52" hits="0" branch="false"/>
1428
+ <line number="56" hits="0" branch="false"/>
1429
+ <line number="59" hits="0" branch="true" condition-coverage="0% (0/3)"/>
1430
+ <line number="60" hits="0" branch="false"/>
1431
+ <line number="63" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1432
+ <line number="68" hits="0" branch="false"/>
1433
+ <line number="71" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1434
+ <line number="72" hits="0" branch="false"/>
1435
+ <line number="76" hits="0" branch="false"/>
1436
+ <line number="77" hits="0" branch="false"/>
345
1437
  </lines>
346
1438
  </class>
347
- <class name="emptyMock.ts" filename="mocks/emptyMock.ts" line-rate="1" branch-rate="1">
1439
+ <class name="program.ts" filename="nrfutil/device/program.ts" line-rate="0.2452" branch-rate="0">
348
1440
  <methods>
1441
+ <method name="(anonymous_6)" hits="0" signature="()V">
1442
+ <lines>
1443
+ <line number="44" hits="0"/>
1444
+ </lines>
1445
+ </method>
1446
+ <method name="(anonymous_7)" hits="0" signature="()V">
1447
+ <lines>
1448
+ <line number="49" hits="0"/>
1449
+ </lines>
1450
+ </method>
1451
+ <method name="(anonymous_8)" hits="0" signature="()V">
1452
+ <lines>
1453
+ <line number="54" hits="0"/>
1454
+ </lines>
1455
+ </method>
1456
+ <method name="(anonymous_9)" hits="0" signature="()V">
1457
+ <lines>
1458
+ <line number="60" hits="0"/>
1459
+ </lines>
1460
+ </method>
1461
+ <method name="(anonymous_10)" hits="0" signature="()V">
1462
+ <lines>
1463
+ <line number="63" hits="0"/>
1464
+ </lines>
1465
+ </method>
1466
+ <method name="(anonymous_11)" hits="0" signature="()V">
1467
+ <lines>
1468
+ <line number="64" hits="0"/>
1469
+ </lines>
1470
+ </method>
1471
+ <method name="(anonymous_12)" hits="0" signature="()V">
1472
+ <lines>
1473
+ <line number="75" hits="0"/>
1474
+ </lines>
1475
+ </method>
1476
+ <method name="(anonymous_13)" hits="0" signature="()V">
1477
+ <lines>
1478
+ <line number="101" hits="0"/>
1479
+ </lines>
1480
+ </method>
1481
+ <method name="(anonymous_14)" hits="0" signature="()V">
1482
+ <lines>
1483
+ <line number="123" hits="0"/>
1484
+ </lines>
1485
+ </method>
1486
+ <method name="(anonymous_15)" hits="0" signature="()V">
1487
+ <lines>
1488
+ <line number="132" hits="0"/>
1489
+ </lines>
1490
+ </method>
1491
+ <method name="(anonymous_16)" hits="0" signature="()V">
1492
+ <lines>
1493
+ <line number="158" hits="0"/>
1494
+ </lines>
1495
+ </method>
349
1496
  </methods>
350
1497
  <lines>
351
- <line number="7" hits="11" branch="false"/>
1498
+ <line number="7" hits="3" branch="false"/>
1499
+ <line number="8" hits="3" branch="false"/>
1500
+ <line number="9" hits="3" branch="false"/>
1501
+ <line number="10" hits="3" branch="false"/>
1502
+ <line number="19" hits="3" branch="false"/>
1503
+ <line number="44" hits="3" branch="false"/>
1504
+ <line number="47" hits="0" branch="false"/>
1505
+ <line number="49" hits="3" branch="false"/>
1506
+ <line number="52" hits="0" branch="false"/>
1507
+ <line number="54" hits="3" branch="false"/>
1508
+ <line number="57" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1509
+ <line number="60" hits="3" branch="false"/>
1510
+ <line number="61" hits="0" branch="false"/>
1511
+ <line number="62" hits="0" branch="false"/>
1512
+ <line number="63" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1513
+ <line number="64" hits="0" branch="false"/>
1514
+ <line number="67" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1515
+ <line number="68" hits="0" branch="false"/>
1516
+ <line number="69" hits="0" branch="false"/>
1517
+ <line number="72" hits="0" branch="false"/>
1518
+ <line number="75" hits="3" branch="false"/>
1519
+ <line number="76" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1520
+ <line number="78" hits="0" branch="false"/>
1521
+ <line number="80" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1522
+ <line number="81" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1523
+ <line number="82" hits="0" branch="false"/>
1524
+ <line number="83" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1525
+ <line number="84" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1526
+ <line number="85" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1527
+ <line number="86" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1528
+ <line number="87" hits="0" branch="false"/>
1529
+ <line number="88" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1530
+ <line number="89" hits="0" branch="false"/>
1531
+ <line number="94" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1532
+ <line number="95" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1533
+ <line number="96" hits="0" branch="false"/>
1534
+ <line number="99" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1535
+ <line number="101" hits="3" branch="false"/>
1536
+ <line number="109" hits="0" branch="false"/>
1537
+ <line number="123" hits="3" branch="false"/>
1538
+ <line number="132" hits="0" branch="false"/>
1539
+ <line number="134" hits="0" branch="false"/>
1540
+ <line number="135" hits="0" branch="false"/>
1541
+ <line number="138" hits="0" branch="false"/>
1542
+ <line number="140" hits="0" branch="false"/>
1543
+ <line number="143" hits="0" branch="false"/>
1544
+ <line number="144" hits="0" branch="false"/>
1545
+ <line number="145" hits="0" branch="false"/>
1546
+ <line number="154" hits="0" branch="false"/>
1547
+ <line number="158" hits="3" branch="false"/>
1548
+ <line number="166" hits="0" branch="true" condition-coverage="0% (0/2)"/>
1549
+ <line number="167" hits="0" branch="false"/>
1550
+ <line number="176" hits="0" branch="false"/>
352
1551
  </lines>
353
1552
  </class>
354
- <class name="fileMock.ts" filename="mocks/fileMock.ts" line-rate="1" branch-rate="1">
1553
+ <class name="programBatch.ts" filename="nrfutil/device/programBatch.ts" line-rate="0.375" branch-rate="0">
355
1554
  <methods>
1555
+ <method name="(anonymous_3)" hits="0" signature="()V">
1556
+ <lines>
1557
+ <line number="43" hits="0"/>
1558
+ </lines>
1559
+ </method>
1560
+ <method name="(anonymous_4)" hits="0" signature="()V">
1561
+ <lines>
1562
+ <line number="55" hits="0"/>
1563
+ </lines>
1564
+ </method>
356
1565
  </methods>
357
1566
  <lines>
358
- <line number="13" hits="122" branch="false"/>
1567
+ <line number="7" hits="3" branch="false"/>
1568
+ <line number="8" hits="3" branch="false"/>
1569
+ <line number="9" hits="3" branch="false"/>
1570
+ <line number="10" hits="3" branch="false"/>
1571
+ <line number="18" hits="3" branch="false"/>
1572
+ <line number="29" hits="0" branch="false"/>
1573
+ <line number="43" hits="3" branch="false"/>
1574
+ <line number="51" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1575
+ <line number="52" hits="0" branch="false"/>
1576
+ <line number="55" hits="0" branch="false"/>
1577
+ <line number="57" hits="0" branch="false"/>
1578
+ <line number="58" hits="0" branch="false"/>
1579
+ <line number="61" hits="0" branch="false"/>
1580
+ <line number="63" hits="0" branch="false"/>
1581
+ <line number="66" hits="0" branch="false"/>
1582
+ <line number="68" hits="0" branch="false"/>
359
1583
  </lines>
360
1584
  </class>
361
- <class name="packageJsonMock.ts" filename="mocks/packageJsonMock.ts" line-rate="1" branch-rate="1">
1585
+ <class name="recover.ts" filename="nrfutil/device/recover.ts" line-rate="0.6666" branch-rate="0">
362
1586
  <methods>
363
- <method name="(anonymous_1)" hits="26" signature="()V">
1587
+ <method name="(anonymous_1)" hits="0" signature="()V">
364
1588
  <lines>
365
- <line number="7" hits="26"/>
1589
+ <line number="14" hits="0"/>
366
1590
  </lines>
367
1591
  </method>
368
1592
  </methods>
369
1593
  <lines>
370
- <line number="7" hits="26" branch="false"/>
1594
+ <line number="12" hits="3" branch="false"/>
1595
+ <line number="14" hits="3" branch="false"/>
1596
+ <line number="20" hits="0" branch="false"/>
371
1597
  </lines>
372
1598
  </class>
373
- <class name="remoteMock.ts" filename="mocks/remoteMock.ts" line-rate="0.6" branch-rate="1">
1599
+ <class name="recoverBatch.ts" filename="nrfutil/device/recoverBatch.ts" line-rate="0.3333" branch-rate="0">
374
1600
  <methods>
375
- <method name="(anonymous_4)" hits="1" signature="()V">
1601
+ </methods>
1602
+ <lines>
1603
+ <line number="12" hits="3" branch="false"/>
1604
+ <line number="15" hits="0" branch="false"/>
1605
+ <line number="20" hits="0" branch="false"/>
1606
+ </lines>
1607
+ </class>
1608
+ <class name="reset.ts" filename="nrfutil/device/reset.ts" line-rate="0.2" branch-rate="0">
1609
+ <methods>
1610
+ <method name="(anonymous_1)" hits="0" signature="()V">
376
1611
  <lines>
377
- <line number="10" hits="1"/>
1612
+ <line number="15" hits="0"/>
378
1613
  </lines>
379
1614
  </method>
380
- <method name="(anonymous_5)" hits="0" signature="()V">
1615
+ </methods>
1616
+ <lines>
1617
+ <line number="13" hits="3" branch="false"/>
1618
+ <line number="15" hits="3" branch="false"/>
1619
+ <line number="22" hits="0" branch="false"/>
1620
+ <line number="24" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1621
+ <line number="25" hits="0" branch="false"/>
1622
+ <line number="26" hits="0" branch="false"/>
1623
+ <line number="29" hits="0" branch="true" condition-coverage="0% (0/1)"/>
1624
+ <line number="30" hits="0" branch="false"/>
1625
+ <line number="31" hits="0" branch="false"/>
1626
+ <line number="34" hits="0" branch="false"/>
1627
+ </lines>
1628
+ </class>
1629
+ <class name="resetBatch.ts" filename="nrfutil/device/resetBatch.ts" line-rate="0.3333" branch-rate="0">
1630
+ <methods>
1631
+ </methods>
1632
+ <lines>
1633
+ <line number="12" hits="3" branch="false"/>
1634
+ <line number="15" hits="0" branch="false"/>
1635
+ <line number="21" hits="0" branch="false"/>
1636
+ </lines>
1637
+ </class>
1638
+ <class name="setMcuState.ts" filename="nrfutil/device/setMcuState.ts" line-rate="0.6666" branch-rate="1">
1639
+ <methods>
1640
+ <method name="(anonymous_1)" hits="0" signature="()V">
381
1641
  <lines>
382
- <line number="13" hits="0"/>
1642
+ <line number="15" hits="0"/>
383
1643
  </lines>
384
1644
  </method>
385
- <method name="(anonymous_6)" hits="0" signature="()V">
1645
+ </methods>
1646
+ <lines>
1647
+ <line number="11" hits="3" branch="false"/>
1648
+ <line number="15" hits="3" branch="false"/>
1649
+ <line number="21" hits="0" branch="false"/>
1650
+ </lines>
1651
+ </class>
1652
+ <class name="setProtectionStatus.ts" filename="nrfutil/device/setProtectionStatus.ts" line-rate="0.6666" branch-rate="0">
1653
+ <methods>
1654
+ <method name="(anonymous_1)" hits="0" signature="()V">
386
1655
  <lines>
387
- <line number="16" hits="0"/>
1656
+ <line number="14" hits="0"/>
388
1657
  </lines>
389
1658
  </method>
390
1659
  </methods>
391
1660
  <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"/>
1661
+ <line number="12" hits="3" branch="false"/>
1662
+ <line number="14" hits="3" branch="false"/>
1663
+ <line number="21" hits="0" branch="false"/>
397
1664
  </lines>
398
1665
  </class>
399
1666
  </classes>
@@ -556,9 +1823,9 @@
556
1823
  <line number="20" hits="98"/>
557
1824
  </lines>
558
1825
  </method>
559
- <method name="(anonymous_4)" hits="220" signature="()V">
1826
+ <method name="(anonymous_4)" hits="218" signature="()V">
560
1827
  <lines>
561
- <line number="23" hits="220"/>
1828
+ <line number="23" hits="218"/>
562
1829
  </lines>
563
1830
  </method>
564
1831
  <method name="(anonymous_5)" hits="49" signature="()V">
@@ -590,7 +1857,7 @@
590
1857
  <line number="18" hits="9" branch="false"/>
591
1858
  <line number="20" hits="9" branch="false"/>
592
1859
  <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)"/>
1860
+ <line number="23" hits="218" branch="true" condition-coverage="100% (1/1)"/>
594
1861
  <line number="25" hits="49" branch="true" condition-coverage="100% (1/1)"/>
595
1862
  <line number="38" hits="9" branch="false"/>
596
1863
  <line number="39" hits="49" branch="false"/>
@@ -769,22 +2036,22 @@
769
2036
  <methods>
770
2037
  <method name="(anonymous_2)" hits="1" signature="()V">
771
2038
  <lines>
772
- <line number="29" hits="1"/>
2039
+ <line number="26" hits="1"/>
773
2040
  </lines>
774
2041
  </method>
775
2042
  <method name="(anonymous_3)" hits="0" signature="()V">
776
2043
  <lines>
777
- <line number="57" hits="0"/>
2044
+ <line number="54" hits="0"/>
778
2045
  </lines>
779
2046
  </method>
780
2047
  <method name="(anonymous_4)" hits="0" signature="()V">
781
2048
  <lines>
782
- <line number="77" hits="0"/>
2049
+ <line number="74" hits="0"/>
783
2050
  </lines>
784
2051
  </method>
785
2052
  <method name="(anonymous_5)" hits="0" signature="()V">
786
2053
  <lines>
787
- <line number="88" hits="0"/>
2054
+ <line number="85" hits="0"/>
788
2055
  </lines>
789
2056
  </method>
790
2057
  </methods>
@@ -796,24 +2063,24 @@
796
2063
  <line number="12" hits="1" branch="false"/>
797
2064
  <line number="13" hits="1" branch="false"/>
798
2065
  <line number="18" hits="1" branch="false"/>
2066
+ <line number="19" hits="1" branch="false"/>
2067
+ <line number="20" hits="1" branch="false"/>
2068
+ <line number="21" hits="1" branch="false"/>
799
2069
  <line number="22" hits="1" branch="false"/>
800
2070
  <line number="23" hits="1" branch="false"/>
801
2071
  <line number="24" hits="1" branch="false"/>
802
- <line number="25" hits="1" branch="false"/>
803
2072
  <line number="26" hits="1" branch="false"/>
804
2073
  <line number="27" hits="1" branch="false"/>
2074
+ <line number="28" hits="1" branch="false"/>
805
2075
  <line number="29" hits="1" branch="false"/>
806
2076
  <line number="30" hits="1" branch="false"/>
807
2077
  <line number="31" hits="1" branch="false"/>
808
- <line number="32" hits="1" branch="false"/>
809
2078
  <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"/>
2079
+ <line number="55" hits="0" branch="false"/>
2080
+ <line number="75" hits="0" branch="false"/>
2081
+ <line number="76" hits="0" branch="false"/>
2082
+ <line number="86" hits="0" branch="false"/>
2083
+ <line number="87" hits="0" branch="false"/>
817
2084
  </lines>
818
2085
  </class>
819
2086
  <class name="shortcutSlice.ts" filename="src/About/shortcutSlice.ts" line-rate="0.7222" branch-rate="1">
@@ -877,78 +2144,78 @@
877
2144
  </class>
878
2145
  </classes>
879
2146
  </package>
880
- <package name="src.App" line-rate="0.7887000000000001" branch-rate="0.5625">
2147
+ <package name="src.App" line-rate="0.8" branch-rate="0.5757">
881
2148
  <classes>
882
- <class name="App.tsx" filename="src/App/App.tsx" line-rate="0.8536" branch-rate="0.5">
2149
+ <class name="App.tsx" filename="src/App/App.tsx" line-rate="0.8665999999999999" branch-rate="0.5185">
883
2150
  <methods>
884
2151
  <method name="(anonymous_7)" hits="0" signature="()V">
885
2152
  <lines>
886
- <line number="51" hits="0"/>
2153
+ <line number="53" hits="0"/>
887
2154
  </lines>
888
2155
  </method>
889
2156
  <method name="(anonymous_8)" hits="1" signature="()V">
890
2157
  <lines>
891
- <line number="85" hits="1"/>
2158
+ <line number="87" hits="1"/>
892
2159
  </lines>
893
2160
  </method>
894
2161
  <method name="(anonymous_9)" hits="1" signature="()V">
895
2162
  <lines>
896
- <line number="109" hits="1"/>
2163
+ <line number="120" hits="1"/>
897
2164
  </lines>
898
2165
  </method>
899
2166
  <method name="(anonymous_10)" hits="1" signature="()V">
900
2167
  <lines>
901
- <line number="113" hits="1"/>
2168
+ <line number="124" hits="1"/>
902
2169
  </lines>
903
2170
  </method>
904
2171
  <method name="(anonymous_11)" hits="1" signature="()V">
905
2172
  <lines>
906
- <line number="126" hits="1"/>
2173
+ <line number="137" hits="1"/>
907
2174
  </lines>
908
2175
  </method>
909
2176
  <method name="(anonymous_12)" hits="3" signature="()V">
910
2177
  <lines>
911
- <line number="155" hits="3"/>
2178
+ <line number="166" hits="3"/>
912
2179
  </lines>
913
2180
  </method>
914
2181
  <method name="(anonymous_13)" hits="1" signature="()V">
915
2182
  <lines>
916
- <line number="181" hits="1"/>
2183
+ <line number="192" hits="1"/>
917
2184
  </lines>
918
2185
  </method>
919
2186
  <method name="(anonymous_14)" hits="1" signature="()V">
920
2187
  <lines>
921
- <line number="197" hits="1"/>
2188
+ <line number="208" hits="1"/>
922
2189
  </lines>
923
2190
  </method>
924
2191
  <method name="(anonymous_15)" hits="1" signature="()V">
925
2192
  <lines>
926
- <line number="208" hits="1"/>
2193
+ <line number="219" hits="1"/>
927
2194
  </lines>
928
2195
  </method>
929
2196
  <method name="(anonymous_16)" hits="1" signature="()V">
930
2197
  <lines>
931
- <line number="210" hits="1"/>
2198
+ <line number="221" hits="1"/>
932
2199
  </lines>
933
2200
  </method>
934
2201
  <method name="(anonymous_17)" hits="1" signature="()V">
935
2202
  <lines>
936
- <line number="216" hits="1"/>
2203
+ <line number="227" hits="1"/>
937
2204
  </lines>
938
2205
  </method>
939
2206
  <method name="(anonymous_18)" hits="1" signature="()V">
940
2207
  <lines>
941
- <line number="223" hits="1"/>
2208
+ <line number="234" hits="1"/>
942
2209
  </lines>
943
2210
  </method>
944
2211
  <method name="(anonymous_21)" hits="1" signature="()V">
945
2212
  <lines>
946
- <line number="248" hits="1"/>
2213
+ <line number="259" hits="1"/>
947
2214
  </lines>
948
2215
  </method>
949
2216
  <method name="(anonymous_22)" hits="0" signature="()V">
950
2217
  <lines>
951
- <line number="255" hits="0"/>
2218
+ <line number="266" hits="0"/>
952
2219
  </lines>
953
2220
  </method>
954
2221
  </methods>
@@ -962,7 +2229,7 @@
962
2229
  <line number="16" hits="1" branch="false"/>
963
2230
  <line number="17" hits="1" branch="false"/>
964
2231
  <line number="18" hits="1" branch="false"/>
965
- <line number="23" hits="1" branch="false"/>
2232
+ <line number="19" hits="1" branch="false"/>
966
2233
  <line number="24" hits="1" branch="false"/>
967
2234
  <line number="25" hits="1" branch="false"/>
968
2235
  <line number="26" hits="1" branch="false"/>
@@ -974,67 +2241,75 @@
974
2241
  <line number="32" hits="1" branch="false"/>
975
2242
  <line number="33" hits="1" branch="false"/>
976
2243
  <line number="34" hits="1" branch="false"/>
977
- <line number="42" hits="1" branch="false"/>
978
- <line number="43" hits="1" branch="false"/>
2244
+ <line number="35" hits="1" branch="false"/>
2245
+ <line number="36" hits="1" branch="false"/>
979
2246
  <line number="44" hits="1" branch="false"/>
2247
+ <line number="45" hits="1" branch="false"/>
980
2248
  <line number="46" hits="1" branch="false"/>
981
- <line number="47" hits="1" branch="false"/>
982
2249
  <line number="48" hits="1" branch="false"/>
2250
+ <line number="49" hits="1" branch="false"/>
983
2251
  <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"/>
2252
+ <line number="52" hits="1" branch="false"/>
2253
+ <line number="53" hits="1" branch="false"/>
2254
+ <line number="54" hits="0" branch="true" condition-coverage="0% (0/1)"/>
988
2255
  <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"/>
2256
+ <line number="56" hits="0" branch="false"/>
2257
+ <line number="57" hits="0" branch="false"/>
2258
+ <line number="60" hits="0" branch="false"/>
2259
+ <line number="87" hits="1" branch="false"/>
993
2260
  <line number="98" hits="1" branch="false"/>
994
- <line number="99" hits="1" branch="false"/>
995
- <line number="100" hits="1" branch="false"/>
2261
+ <line number="100" hits="1" branch="true" condition-coverage="100% (1/1)"/>
2262
+ <line number="101" hits="1" branch="false"/>
996
2263
  <line number="102" hits="1" branch="false"/>
2264
+ <line number="103" hits="1" branch="false"/>
2265
+ <line number="104" hits="1" branch="false"/>
2266
+ <line number="107" hits="1" branch="false"/>
2267
+ <line number="108" hits="1" branch="false"/>
997
2268
  <line number="109" hits="1" branch="false"/>
998
2269
  <line number="110" hits="1" branch="false"/>
2270
+ <line number="111" hits="1" branch="false"/>
999
2271
  <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"/>
2272
+ <line number="120" hits="1" branch="false"/>
2273
+ <line number="121" hits="1" branch="false"/>
2274
+ <line number="124" hits="1" branch="false"/>
2275
+ <line number="125" hits="1" branch="true" condition-coverage="0% (0/1)"/>
2276
+ <line number="126" hits="0" branch="false"/>
2277
+ <line number="130" hits="1" branch="false"/>
2278
+ <line number="132" hits="1" branch="true" condition-coverage="50% (1/2)"/>
2279
+ <line number="135" hits="1" branch="true" condition-coverage="100% (2/2)"/>
2280
+ <line number="137" hits="1" branch="false"/>
2281
+ <line number="138" hits="1" branch="true" condition-coverage="0% (0/1)"/>
2282
+ <line number="139" hits="0" branch="false"/>
2283
+ <line number="143" hits="1" branch="false"/>
2284
+ <line number="167" hits="3" branch="false"/>
2285
+ <line number="192" hits="1" branch="false"/>
2286
+ <line number="193" hits="1" branch="false"/>
2287
+ <line number="194" hits="1" branch="false"/>
2288
+ <line number="195" hits="1" branch="false"/>
1015
2289
  <line number="197" hits="1" branch="false"/>
1016
- <line number="201" hits="1" branch="false"/>
1017
2290
  <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
2291
  <line number="212" hits="1" branch="false"/>
1022
- <line number="216" hits="1" branch="false"/>
2292
+ <line number="219" hits="1" branch="false"/>
2293
+ <line number="220" hits="1" branch="false"/>
1023
2294
  <line number="221" hits="1" branch="false"/>
2295
+ <line number="222" hits="1" branch="true" condition-coverage="75% (3/4)"/>
1024
2296
  <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"/>
2297
+ <line number="227" hits="1" branch="false"/>
2298
+ <line number="232" hits="1" branch="false"/>
2299
+ <line number="234" hits="1" branch="false"/>
2300
+ <line number="235" hits="1" branch="false"/>
2301
+ <line number="237" hits="1" branch="true" condition-coverage="0% (0/1)"/>
2302
+ <line number="238" hits="0" branch="false"/>
2303
+ <line number="251" hits="1" branch="false"/>
2304
+ <line number="256" hits="1" branch="false"/>
2305
+ <line number="259" hits="1" branch="false"/>
2306
+ <line number="260" hits="1" branch="false"/>
2307
+ <line number="263" hits="1" branch="false"/>
2308
+ <line number="266" hits="1" branch="false"/>
2309
+ <line number="267" hits="0" branch="false"/>
2310
+ <line number="268" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2311
+ <line number="269" hits="0" branch="false"/>
2312
+ <line number="271" hits="0" branch="false"/>
1038
2313
  </lines>
1039
2314
  </class>
1040
2315
  <class name="ConnectedToStore.tsx" filename="src/App/ConnectedToStore.tsx" line-rate="1" branch-rate="1">
@@ -1267,7 +2542,7 @@
1267
2542
  </class>
1268
2543
  </classes>
1269
2544
  </package>
1270
- <package name="src.Device" line-rate="0.3814" branch-rate="0.18530000000000002">
2545
+ <package name="src.Device" line-rate="0.3824" branch-rate="0.1961">
1271
2546
  <classes>
1272
2547
  <class name="deviceAutoSelectSlice.ts" filename="src/Device/deviceAutoSelectSlice.ts" line-rate="0.62" branch-rate="0.44439999999999996">
1273
2548
  <methods>
@@ -1410,129 +2685,69 @@
1410
2685
  <line number="150" hits="0" branch="false"/>
1411
2686
  </lines>
1412
2687
  </class>
1413
- <class name="deviceLibWrapper.ts" filename="src/Device/deviceLibWrapper.ts" line-rate="0.4901" branch-rate="0.4838">
2688
+ <class name="deviceLibWrapper.ts" filename="src/Device/deviceLibWrapper.ts" line-rate="0.6666" branch-rate="0.6842">
1414
2689
  <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">
2690
+ <method name="(anonymous_4)" hits="0" signature="()V">
1446
2691
  <lines>
1447
- <line number="100" hits="0"/>
2692
+ <line number="16" hits="0"/>
1448
2693
  </lines>
1449
2694
  </method>
1450
- <method name="(anonymous_14)" hits="0" signature="()V">
2695
+ <method name="(anonymous_5)" hits="0" signature="()V">
1451
2696
  <lines>
1452
- <line number="105" hits="0"/>
2697
+ <line number="22" hits="0"/>
1453
2698
  </lines>
1454
2699
  </method>
1455
- <method name="(anonymous_15)" hits="5" signature="()V">
2700
+ <method name="(anonymous_6)" hits="5" signature="()V">
1456
2701
  <lines>
1457
- <line number="113" hits="5"/>
2702
+ <line number="47" hits="5"/>
1458
2703
  </lines>
1459
2704
  </method>
1460
- <method name="(anonymous_16)" hits="7" signature="()V">
2705
+ <method name="(anonymous_7)" hits="7" signature="()V">
1461
2706
  <lines>
1462
- <line number="114" hits="7"/>
2707
+ <line number="48" hits="7"/>
1463
2708
  </lines>
1464
2709
  </method>
1465
- <method name="(anonymous_17)" hits="3" signature="()V">
2710
+ <method name="(anonymous_8)" hits="3" signature="()V">
1466
2711
  <lines>
1467
- <line number="116" hits="3"/>
2712
+ <line number="50" hits="3"/>
1468
2713
  </lines>
1469
2714
  </method>
1470
- <method name="(anonymous_18)" hits="4" signature="()V">
2715
+ <method name="(anonymous_9)" hits="4" signature="()V">
1471
2716
  <lines>
1472
- <line number="120" hits="4"/>
2717
+ <line number="54" hits="4"/>
1473
2718
  </lines>
1474
2719
  </method>
1475
- <method name="(anonymous_19)" hits="5" signature="()V">
2720
+ <method name="(anonymous_10)" hits="5" signature="()V">
1476
2721
  <lines>
1477
- <line number="128" hits="5"/>
2722
+ <line number="62" hits="5"/>
1478
2723
  </lines>
1479
2724
  </method>
1480
2725
  </methods>
1481
2726
  <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)"/>
2727
+ <line number="7" hits="1" branch="false"/>
2728
+ <line number="12" hits="1" branch="false"/>
2729
+ <line number="13" hits="1" branch="false"/>
2730
+ <line number="15" hits="1" branch="false"/>
2731
+ <line number="16" hits="1" branch="false"/>
2732
+ <line number="17" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2733
+ <line number="19" hits="0" branch="false"/>
2734
+ <line number="22" hits="1" branch="false"/>
2735
+ <line number="23" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2736
+ <line number="24" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2737
+ <line number="27" hits="0" branch="false"/>
2738
+ <line number="37" hits="0" branch="false"/>
1495
2739
  <line number="40" hits="0" branch="false"/>
2740
+ <line number="47" hits="1" branch="false"/>
2741
+ <line number="48" hits="7" branch="false"/>
1496
2742
  <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)"/>
2743
+ <line number="51" hits="3" branch="true" condition-coverage="100% (1/1)"/>
2744
+ <line number="52" hits="3" branch="false"/>
2745
+ <line number="54" hits="4" branch="false"/>
2746
+ <line number="62" hits="2" branch="false"/>
2747
+ <line number="66" hits="5" branch="true" condition-coverage="100% (4/4)"/>
1533
2748
  </lines>
1534
2749
  </class>
1535
- <class name="deviceLister.ts" filename="src/Device/deviceLister.ts" line-rate="0.24789999999999998" branch-rate="0.0545">
2750
+ <class name="deviceLister.ts" filename="src/Device/deviceLister.ts" line-rate="0.3333" branch-rate="0.0925">
1536
2751
  <methods>
1537
2752
  <method name="(anonymous_8)" hits="0" signature="()V">
1538
2753
  <lines>
@@ -1561,88 +2776,107 @@
1561
2776
  </method>
1562
2777
  <method name="(anonymous_15)" hits="0" signature="()V">
1563
2778
  <lines>
1564
- <line number="123" hits="0"/>
2779
+ <line number="121" hits="0"/>
1565
2780
  </lines>
1566
2781
  </method>
1567
2782
  <method name="(anonymous_16)" hits="7" signature="()V">
1568
2783
  <lines>
1569
- <line number="126" hits="7"/>
2784
+ <line number="124" hits="7"/>
1570
2785
  </lines>
1571
2786
  </method>
1572
2787
  <method name="(anonymous_17)" hits="39" signature="()V">
1573
2788
  <lines>
1574
- <line number="131" hits="39"/>
2789
+ <line number="129" hits="39"/>
1575
2790
  </lines>
1576
2791
  </method>
1577
2792
  <method name="(anonymous_18)" hits="32" signature="()V">
1578
2793
  <lines>
1579
- <line number="136" hits="32"/>
2794
+ <line number="134" hits="32"/>
1580
2795
  </lines>
1581
2796
  </method>
1582
2797
  <method name="(anonymous_19)" hits="0" signature="()V">
1583
2798
  <lines>
1584
- <line number="140" hits="0"/>
2799
+ <line number="138" hits="0"/>
1585
2800
  </lines>
1586
2801
  </method>
1587
2802
  <method name="(anonymous_20)" hits="0" signature="()V">
1588
2803
  <lines>
1589
- <line number="145" hits="0"/>
2804
+ <line number="143" hits="0"/>
1590
2805
  </lines>
1591
2806
  </method>
1592
2807
  <method name="(anonymous_22)" hits="11" signature="()V">
1593
2808
  <lines>
1594
- <line number="179" hits="11"/>
2809
+ <line number="177" hits="11"/>
1595
2810
  </lines>
1596
2811
  </method>
1597
2812
  <method name="(anonymous_23)" hits="0" signature="()V">
1598
2813
  <lines>
1599
- <line number="180" hits="0"/>
2814
+ <line number="178" hits="0"/>
1600
2815
  </lines>
1601
2816
  </method>
1602
2817
  <method name="(anonymous_24)" hits="0" signature="()V">
1603
2818
  <lines>
1604
- <line number="306" hits="0"/>
2819
+ <line number="282" hits="0"/>
1605
2820
  </lines>
1606
2821
  </method>
1607
2822
  <method name="(anonymous_25)" hits="0" signature="()V">
1608
2823
  <lines>
1609
- <line number="322" hits="0"/>
2824
+ <line number="285" hits="0"/>
1610
2825
  </lines>
1611
2826
  </method>
1612
2827
  <method name="(anonymous_26)" hits="0" signature="()V">
1613
2828
  <lines>
1614
- <line number="385" hits="0"/>
2829
+ <line number="298" hits="0"/>
1615
2830
  </lines>
1616
2831
  </method>
1617
- <method name="(anonymous_27)" hits="0" signature="()V">
2832
+ <method name="(anonymous_27)" hits="1" signature="()V">
1618
2833
  <lines>
1619
- <line number="396" hits="0"/>
2834
+ <line number="333" hits="1"/>
1620
2835
  </lines>
1621
2836
  </method>
1622
2837
  <method name="(anonymous_28)" hits="0" signature="()V">
1623
2838
  <lines>
1624
- <line number="398" hits="0"/>
2839
+ <line number="336" hits="0"/>
2840
+ </lines>
2841
+ </method>
2842
+ <method name="(anonymous_29)" hits="21" signature="()V">
2843
+ <lines>
2844
+ <line number="341" hits="21"/>
2845
+ </lines>
2846
+ </method>
2847
+ <method name="(anonymous_30)" hits="0" signature="()V">
2848
+ <lines>
2849
+ <line number="342" hits="0"/>
2850
+ </lines>
2851
+ </method>
2852
+ <method name="(anonymous_31)" hits="1" signature="()V">
2853
+ <lines>
2854
+ <line number="362" hits="1"/>
2855
+ </lines>
2856
+ </method>
2857
+ <method name="(anonymous_32)" hits="4" signature="()V">
2858
+ <lines>
2859
+ <line number="364" hits="4"/>
1625
2860
  </lines>
1626
2861
  </method>
1627
- <method name="(anonymous_30)" hits="8" signature="()V">
2862
+ <method name="(anonymous_34)" hits="8" signature="()V">
1628
2863
  <lines>
1629
- <line number="402" hits="8"/>
2864
+ <line number="368" hits="8"/>
1630
2865
  </lines>
1631
2866
  </method>
1632
- <method name="(anonymous_31)" hits="22" signature="()V">
2867
+ <method name="(anonymous_35)" hits="22" signature="()V">
1633
2868
  <lines>
1634
- <line number="414" hits="22"/>
2869
+ <line number="375" hits="22"/>
1635
2870
  </lines>
1636
2871
  </method>
1637
2872
  </methods>
1638
2873
  <lines>
1639
- <line number="11" hits="2" branch="false"/>
2874
+ <line number="12" hits="2" branch="false"/>
1640
2875
  <line number="13" hits="2" branch="false"/>
1641
2876
  <line number="23" hits="2" branch="false"/>
1642
2877
  <line number="24" hits="2" branch="false"/>
1643
2878
  <line number="25" hits="2" branch="false"/>
1644
2879
  <line number="26" hits="2" branch="false"/>
1645
- <line number="27" hits="2" branch="false"/>
1646
2880
  <line number="29" hits="2" branch="false"/>
1647
2881
  <line number="31" hits="2" branch="false"/>
1648
2882
  <line number="35" hits="0" branch="false"/>
@@ -1666,97 +2900,88 @@
1666
2900
  <line number="86" hits="0" branch="true" condition-coverage="0% (0/4)"/>
1667
2901
  <line number="91" hits="0" branch="false"/>
1668
2902
  <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"/>
2903
+ <line number="108" hits="0" branch="false"/>
2904
+ <line number="121" hits="2" branch="false"/>
2905
+ <line number="122" hits="0" branch="false"/>
2906
+ <line number="124" hits="7" branch="false"/>
2907
+ <line number="128" hits="7" branch="true" condition-coverage="100% (2/2)"/>
2908
+ <line number="130" hits="39" branch="true" condition-coverage="100% (2/2)"/>
2909
+ <line number="134" hits="32" branch="false"/>
2910
+ <line number="138" hits="2" branch="false"/>
2911
+ <line number="143" hits="0" branch="false"/>
2912
+ <line number="144" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2913
+ <line number="148" hits="0" branch="false"/>
2914
+ <line number="151" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2915
+ <line number="156" hits="0" branch="false"/>
2916
+ <line number="159" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2917
+ <line number="160" hits="0" branch="false"/>
2918
+ <line number="161" hits="0" branch="false"/>
2919
+ <line number="169" hits="11" branch="false"/>
2920
+ <line number="177" hits="11" branch="false"/>
2921
+ <line number="178" hits="11" branch="false"/>
2922
+ <line number="179" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2923
+ <line number="180" hits="0" branch="false"/>
2924
+ <line number="181" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2925
+ <line number="185" hits="0" branch="false"/>
2926
+ <line number="188" hits="0" branch="false"/>
2927
+ <line number="190" hits="0" branch="false"/>
2928
+ <line number="191" hits="0" branch="false"/>
2929
+ <line number="193" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2930
+ <line number="195" hits="0" branch="false"/>
1698
2931
  <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"/>
2932
+ <line number="204" hits="0" branch="false"/>
2933
+ <line number="208" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2934
+ <line number="210" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2935
+ <line number="211" hits="0" branch="false"/>
2936
+ <line number="214" hits="0" branch="false"/>
2937
+ <line number="215" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2938
+ <line number="220" hits="0" branch="false"/>
2939
+ <line number="232" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2940
+ <line number="240" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2941
+ <line number="258" hits="0" branch="false"/>
2942
+ <line number="263" hits="0" branch="false"/>
2943
+ <line number="265" hits="0" branch="false"/>
2944
+ <line number="267" hits="0" branch="false"/>
2945
+ <line number="271" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2946
+ <line number="272" hits="0" branch="false"/>
2947
+ <line number="276" hits="0" branch="false"/>
2948
+ <line number="282" hits="11" branch="false"/>
2949
+ <line number="283" hits="0" branch="false"/>
1714
2950
  <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"/>
2951
+ <line number="286" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2952
+ <line number="288" hits="0" branch="false"/>
2953
+ <line number="289" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2954
+ <line number="293" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2955
+ <line number="294" hits="0" branch="false"/>
1717
2956
  <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"/>
2957
+ <line number="299" hits="0" branch="false"/>
2958
+ <line number="310" hits="0" branch="false"/>
2959
+ <line number="319" hits="0" branch="false"/>
2960
+ <line number="321" hits="0" branch="false"/>
2961
+ <line number="333" hits="11" branch="false"/>
2962
+ <line number="334" hits="1" branch="false"/>
2963
+ <line number="336" hits="0" branch="false"/>
2964
+ <line number="341" hits="1" branch="false"/>
2965
+ <line number="342" hits="21" branch="false"/>
2966
+ <line number="343" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2967
+ <line number="347" hits="1" branch="true" condition-coverage="100% (1/1)"/>
2968
+ <line number="348" hits="1" branch="false"/>
2969
+ <line number="350" hits="1" branch="true" condition-coverage="0% (0/1)"/>
2970
+ <line number="352" hits="0" branch="false"/>
2971
+ <line number="354" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2972
+ <line number="355" hits="0" branch="false"/>
2973
+ <line number="357" hits="1" branch="false"/>
2974
+ <line number="362" hits="2" branch="false"/>
2975
+ <line number="363" hits="1" branch="false"/>
2976
+ <line number="364" hits="4" branch="false"/>
2977
+ <line number="365" hits="1" branch="true" condition-coverage="50% (1/2)"/>
2978
+ <line number="368" hits="8" branch="false"/>
2979
+ <line number="369" hits="8" branch="true" condition-coverage="0% (0/1)"/>
2980
+ <line number="370" hits="0" branch="true" condition-coverage="0% (0/4)"/>
2981
+ <line number="372" hits="8" branch="false"/>
2982
+ <line number="375" hits="11" branch="false"/>
2983
+ <line number="376" hits="22" branch="true" condition-coverage="100% (2/2)"/>
2984
+ <line number="377" hits="1" branch="true" condition-coverage="100% (2/2)"/>
1760
2985
  </lines>
1761
2986
  </class>
1762
2987
  <class name="deviceSetup.ts" filename="src/Device/deviceSetup.ts" line-rate="0.6933" branch-rate="0.409">
@@ -2013,195 +3238,181 @@
2013
3238
  <line number="94" hits="67" branch="false"/>
2014
3239
  </lines>
2015
3240
  </class>
2016
- <class name="deviceSlice.ts" filename="src/Device/deviceSlice.ts" line-rate="0.4857" branch-rate="0.08">
3241
+ <class name="deviceSlice.ts" filename="src/Device/deviceSlice.ts" line-rate="0.5" branch-rate="0.08">
2017
3242
  <methods>
2018
- <method name="(anonymous_19)" hits="0" signature="()V">
3243
+ <method name="(anonymous_18)" hits="0" signature="()V">
2019
3244
  <lines>
2020
- <line number="35" hits="0"/>
3245
+ <line number="32" hits="0"/>
2021
3246
  </lines>
2022
3247
  </method>
2023
- <method name="(anonymous_20)" hits="9" signature="()V">
3248
+ <method name="(anonymous_19)" hits="9" signature="()V">
2024
3249
  <lines>
2025
- <line number="60" hits="9"/>
3250
+ <line number="57" hits="9"/>
2026
3251
  </lines>
2027
3252
  </method>
2028
- <method name="(anonymous_21)" hits="6" signature="()V">
3253
+ <method name="(anonymous_20)" hits="6" signature="()V">
2029
3254
  <lines>
2030
- <line number="94" hits="6"/>
3255
+ <line number="91" hits="6"/>
2031
3256
  </lines>
2032
3257
  </method>
2033
- <method name="(anonymous_22)" hits="2" signature="()V">
3258
+ <method name="(anonymous_21)" hits="2" signature="()V">
2034
3259
  <lines>
2035
- <line number="101" hits="2"/>
3260
+ <line number="98" hits="2"/>
2036
3261
  </lines>
2037
3262
  </method>
2038
- <method name="(anonymous_23)" hits="10" signature="()V">
3263
+ <method name="(anonymous_22)" hits="9" signature="()V">
2039
3264
  <lines>
2040
- <line number="107" hits="10"/>
3265
+ <line number="104" hits="9"/>
2041
3266
  </lines>
2042
3267
  </method>
2043
- <method name="(anonymous_24)" hits="9" signature="()V">
3268
+ <method name="(anonymous_23)" hits="0" signature="()V">
2044
3269
  <lines>
2045
- <line number="109" hits="9"/>
3270
+ <line number="111" hits="0"/>
2046
3271
  </lines>
2047
3272
  </method>
2048
- <method name="(anonymous_25)" hits="0" signature="()V">
3273
+ <method name="(anonymous_24)" hits="0" signature="()V">
3274
+ <lines>
3275
+ <line number="123" hits="0"/>
3276
+ </lines>
3277
+ </method>
3278
+ <method name="(anonymous_25)" hits="1" signature="()V">
2049
3279
  <lines>
2050
- <line number="117" hits="0"/>
3280
+ <line number="146" hits="1"/>
2051
3281
  </lines>
2052
3282
  </method>
2053
3283
  <method name="(anonymous_26)" hits="0" signature="()V">
2054
3284
  <lines>
2055
- <line number="124" hits="0"/>
3285
+ <line number="155" hits="0"/>
2056
3286
  </lines>
2057
3287
  </method>
2058
3288
  <method name="(anonymous_27)" hits="0" signature="()V">
2059
3289
  <lines>
2060
- <line number="136" hits="0"/>
3290
+ <line number="165" hits="0"/>
2061
3291
  </lines>
2062
3292
  </method>
2063
3293
  <method name="(anonymous_28)" hits="0" signature="()V">
2064
3294
  <lines>
2065
- <line number="159" hits="0"/>
3295
+ <line number="168" hits="0"/>
2066
3296
  </lines>
2067
3297
  </method>
2068
3298
  <method name="(anonymous_29)" hits="0" signature="()V">
2069
3299
  <lines>
2070
- <line number="168" hits="0"/>
3300
+ <line number="185" hits="0"/>
2071
3301
  </lines>
2072
3302
  </method>
2073
3303
  <method name="(anonymous_30)" hits="0" signature="()V">
2074
3304
  <lines>
2075
- <line number="178" hits="0"/>
3305
+ <line number="192" hits="0"/>
2076
3306
  </lines>
2077
3307
  </method>
2078
3308
  <method name="(anonymous_31)" hits="0" signature="()V">
2079
3309
  <lines>
2080
- <line number="181" hits="0"/>
3310
+ <line number="216" hits="0"/>
2081
3311
  </lines>
2082
3312
  </method>
2083
3313
  <method name="(anonymous_32)" hits="0" signature="()V">
2084
3314
  <lines>
2085
- <line number="198" hits="0"/>
3315
+ <line number="216" hits="0"/>
2086
3316
  </lines>
2087
3317
  </method>
2088
- <method name="(anonymous_33)" hits="2" signature="()V">
3318
+ <method name="(anonymous_33)" hits="87" signature="()V">
2089
3319
  <lines>
2090
- <line number="205" hits="2"/>
3320
+ <line number="219" hits="87"/>
2091
3321
  </lines>
2092
3322
  </method>
2093
- <method name="(anonymous_34)" hits="0" signature="()V">
2094
- <lines>
2095
- <line number="230" hits="0"/>
2096
- </lines>
2097
- </method>
2098
- <method name="(anonymous_35)" hits="0" signature="()V">
2099
- <lines>
2100
- <line number="230" hits="0"/>
2101
- </lines>
2102
- </method>
2103
- <method name="(anonymous_36)" hits="87" signature="()V">
2104
- <lines>
2105
- <line number="233" hits="87"/>
2106
- </lines>
2107
- </method>
2108
- <method name="(anonymous_37)" hits="75" signature="()V">
2109
- <lines>
2110
- <line number="235" hits="75"/>
2111
- </lines>
2112
- </method>
2113
- <method name="(anonymous_38)" hits="31" signature="()V">
3323
+ <method name="(anonymous_34)" hits="75" signature="()V">
2114
3324
  <lines>
2115
- <line number="238" hits="31"/>
3325
+ <line number="221" hits="75"/>
2116
3326
  </lines>
2117
3327
  </method>
2118
- <method name="(anonymous_39)" hits="10" signature="()V">
3328
+ <method name="(anonymous_35)" hits="31" signature="()V">
2119
3329
  <lines>
2120
- <line number="243" hits="10"/>
3330
+ <line number="224" hits="31"/>
2121
3331
  </lines>
2122
3332
  </method>
2123
- <method name="(anonymous_40)" hits="85" signature="()V">
3333
+ <method name="(anonymous_36)" hits="10" signature="()V">
2124
3334
  <lines>
2125
- <line number="244" hits="85"/>
3335
+ <line number="229" hits="10"/>
2126
3336
  </lines>
2127
3337
  </method>
2128
- <method name="(anonymous_41)" hits="0" signature="()V">
2129
- <lines>
2130
- <line number="247" hits="0"/>
2131
- </lines>
2132
- </method>
2133
- </methods>
2134
- <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)"/>
3338
+ <method name="(anonymous_37)" hits="85" signature="()V">
3339
+ <lines>
3340
+ <line number="230" hits="85"/>
3341
+ </lines>
3342
+ </method>
3343
+ <method name="(anonymous_38)" hits="0" signature="()V">
3344
+ <lines>
3345
+ <line number="233" hits="0"/>
3346
+ </lines>
3347
+ </method>
3348
+ </methods>
3349
+ <lines>
3350
+ <line number="7" hits="10" branch="false"/>
3351
+ <line number="20" hits="10" branch="false"/>
3352
+ <line number="32" hits="10" branch="false"/>
3353
+ <line number="37" hits="0" branch="false"/>
3354
+ <line number="38" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3355
+ <line number="39" hits="0" branch="false"/>
3356
+ <line number="50" hits="10" branch="false"/>
3357
+ <line number="57" hits="10" branch="false"/>
3358
+ <line number="58" hits="9" branch="false"/>
3359
+ <line number="64" hits="9" branch="false"/>
3360
+ <line number="68" hits="9" branch="true" condition-coverage="0% (0/1)"/>
3361
+ <line number="70" hits="0" branch="true" condition-coverage="0% (0/6)"/>
3362
+ <line number="73" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3363
+ <line number="74" hits="0" branch="false"/>
3364
+ <line number="81" hits="9" branch="false"/>
3365
+ <line number="84" hits="10" branch="false"/>
3366
+ <line number="92" hits="6" branch="false"/>
3367
+ <line number="99" hits="2" branch="false"/>
3368
+ <line number="100" hits="2" branch="false"/>
3369
+ <line number="101" hits="2" branch="false"/>
3370
+ <line number="105" hits="9" branch="false"/>
3371
+ <line number="115" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3372
+ <line number="117" hits="0" branch="false"/>
3373
+ <line number="121" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3374
+ <line number="122" hits="0" branch="true" condition-coverage="0% (0/4)"/>
3375
+ <line number="123" hits="0" branch="false"/>
3376
+ <line number="126" hits="0" branch="true" condition-coverage="0% (0/3)"/>
3377
+ <line number="128" hits="0" branch="false"/>
2160
3378
  <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"/>
3379
+ <line number="138" hits="0" branch="false"/>
3380
+ <line number="147" hits="1" branch="false"/>
3381
+ <line number="149" hits="1" branch="true" condition-coverage="0% (0/1)"/>
3382
+ <line number="150" hits="0" branch="false"/>
2167
3383
  <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"/>
3384
+ <line number="156" hits="0" branch="true" condition-coverage="0% (0/4)"/>
3385
+ <line number="158" hits="0" branch="false"/>
3386
+ <line number="159" hits="0" branch="false"/>
3387
+ <line number="165" hits="0" branch="false"/>
3388
+ <line number="175" hits="0" branch="false"/>
3389
+ <line number="179" hits="0" branch="false"/>
3390
+ <line number="186" hits="0" branch="false"/>
3391
+ <line number="187" hits="0" branch="false"/>
3392
+ <line number="196" hits="0" branch="false"/>
3393
+ <line number="202" hits="49" branch="false"/>
3394
+ <line number="204" hits="2" branch="false"/>
3395
+ <line number="205" hits="0" branch="false"/>
3396
+ <line number="206" hits="6" branch="false"/>
3397
+ <line number="207" hits="9" branch="false"/>
3398
+ <line number="208" hits="1" branch="false"/>
3399
+ <line number="209" hits="0" branch="false"/>
3400
+ <line number="210" hits="0" branch="false"/>
3401
+ <line number="211" hits="0" branch="false"/>
3402
+ <line number="212" hits="0" branch="false"/>
3403
+ <line number="214" hits="10" branch="false"/>
3404
+ <line number="216" hits="10" branch="false"/>
3405
+ <line number="217" hits="0" branch="false"/>
3406
+ <line number="219" hits="87" branch="false"/>
3407
+ <line number="221" hits="27" branch="false"/>
3408
+ <line number="222" hits="75" branch="false"/>
3409
+ <line number="224" hits="10" branch="false"/>
3410
+ <line number="225" hits="31" branch="true" condition-coverage="100% (2/2)"/>
3411
+ <line number="229" hits="10" branch="false"/>
3412
+ <line number="230" hits="28" branch="false"/>
3413
+ <line number="231" hits="85" branch="false"/>
3414
+ <line number="233" hits="10" branch="false"/>
3415
+ <line number="234" hits="0" branch="false"/>
2205
3416
  </lines>
2206
3417
  </class>
2207
3418
  <class name="dfu-cc.ts" filename="src/Device/dfu-cc.ts" line-rate="1" branch-rate="1">
@@ -2371,193 +3582,160 @@
2371
3582
  <line number="401" hits="0" branch="false"/>
2372
3583
  </lines>
2373
3584
  </class>
2374
- <class name="jprogOperations.ts" filename="src/Device/jprogOperations.ts" line-rate="0.4428" branch-rate="0.47609999999999997">
3585
+ <class name="jprogOperations.ts" filename="src/Device/jprogOperations.ts" line-rate="0.2807" branch-rate="0.48710000000000003">
2375
3586
  <methods>
2376
3587
  <method name="(anonymous_2)" hits="0" signature="()V">
2377
3588
  <lines>
2378
- <line number="22" hits="0"/>
3589
+ <line number="14" hits="0"/>
2379
3590
  </lines>
2380
3591
  </method>
2381
3592
  <method name="(anonymous_3)" hits="0" signature="()V">
2382
3593
  <lines>
2383
- <line number="33" hits="0"/>
3594
+ <line number="45" hits="0"/>
2384
3595
  </lines>
2385
3596
  </method>
2386
3597
  <method name="(anonymous_4)" hits="0" signature="()V">
2387
3598
  <lines>
2388
- <line number="41" hits="0"/>
3599
+ <line number="50" hits="0"/>
2389
3600
  </lines>
2390
3601
  </method>
2391
3602
  <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
3603
  <lines>
2398
3604
  <line number="64" hits="0"/>
2399
3605
  </lines>
2400
3606
  </method>
2401
3607
  <method name="(anonymous_7)" hits="2" signature="()V">
2402
3608
  <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"/>
3609
+ <line number="92" hits="2"/>
2414
3610
  </lines>
2415
3611
  </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">
3612
+ <method name="(anonymous_8)" hits="2" signature="()V">
2422
3613
  <lines>
2423
- <line number="155" hits="3"/>
3614
+ <line number="107" hits="2"/>
2424
3615
  </lines>
2425
3616
  </method>
2426
- <method name="(anonymous_13)" hits="4" signature="()V">
3617
+ <method name="(anonymous_9)" hits="2" signature="()V">
2427
3618
  <lines>
2428
- <line number="159" hits="4"/>
3619
+ <line number="111" hits="2"/>
2429
3620
  </lines>
2430
3621
  </method>
2431
- <method name="(anonymous_14)" hits="4" signature="()V">
3622
+ <method name="(anonymous_10)" hits="2" signature="()V">
2432
3623
  <lines>
2433
- <line number="162" hits="4"/>
3624
+ <line number="114" hits="2"/>
2434
3625
  </lines>
2435
3626
  </method>
2436
- <method name="(anonymous_15)" hits="2" signature="()V">
3627
+ <method name="(anonymous_11)" hits="0" signature="()V">
2437
3628
  <lines>
2438
- <line number="163" hits="2"/>
3629
+ <line number="115" hits="0"/>
2439
3630
  </lines>
2440
3631
  </method>
2441
- <method name="(anonymous_16)" hits="0" signature="()V">
3632
+ <method name="(anonymous_12)" hits="0" signature="()V">
2442
3633
  <lines>
2443
- <line number="166" hits="0"/>
3634
+ <line number="118" hits="0"/>
2444
3635
  </lines>
2445
3636
  </method>
2446
- <method name="(anonymous_17)" hits="0" signature="()V">
3637
+ <method name="(anonymous_13)" hits="0" signature="()V">
2447
3638
  <lines>
2448
- <line number="166" hits="0"/>
3639
+ <line number="118" hits="0"/>
2449
3640
  </lines>
2450
3641
  </method>
2451
- <method name="(anonymous_18)" hits="2" signature="()V">
3642
+ <method name="(anonymous_14)" hits="0" signature="()V">
2452
3643
  <lines>
2453
- <line number="171" hits="2"/>
3644
+ <line number="123" hits="0"/>
2454
3645
  </lines>
2455
3646
  </method>
2456
- <method name="(anonymous_19)" hits="2" signature="()V">
3647
+ <method name="(anonymous_15)" hits="0" signature="()V">
2457
3648
  <lines>
2458
- <line number="171" hits="2"/>
3649
+ <line number="123" hits="0"/>
2459
3650
  </lines>
2460
3651
  </method>
2461
- <method name="(anonymous_20)" hits="2" signature="()V">
3652
+ <method name="(anonymous_16)" hits="0" signature="()V">
2462
3653
  <lines>
2463
- <line number="181" hits="2"/>
3654
+ <line number="133" hits="0"/>
2464
3655
  </lines>
2465
3656
  </method>
2466
- <method name="(anonymous_21)" hits="0" signature="()V">
3657
+ <method name="(anonymous_17)" hits="0" signature="()V">
2467
3658
  <lines>
2468
- <line number="184" hits="0"/>
3659
+ <line number="136" hits="0"/>
2469
3660
  </lines>
2470
3661
  </method>
2471
- <method name="(anonymous_22)" hits="0" signature="()V">
3662
+ <method name="(anonymous_18)" hits="0" signature="()V">
2472
3663
  <lines>
2473
- <line number="186" hits="0"/>
3664
+ <line number="138" hits="0"/>
2474
3665
  </lines>
2475
3666
  </method>
2476
- <method name="(anonymous_23)" hits="1" signature="()V">
3667
+ <method name="(anonymous_19)" hits="0" signature="()V">
2477
3668
  <lines>
2478
- <line number="205" hits="1"/>
3669
+ <line number="157" hits="0"/>
2479
3670
  </lines>
2480
3671
  </method>
2481
- <method name="(anonymous_24)" hits="1" signature="()V">
3672
+ <method name="(anonymous_20)" hits="0" signature="()V">
2482
3673
  <lines>
2483
- <line number="205" hits="1"/>
3674
+ <line number="157" hits="0"/>
2484
3675
  </lines>
2485
3676
  </method>
2486
3677
  </methods>
2487
3678
  <lines>
3679
+ <line number="7" hits="1" branch="false"/>
3680
+ <line number="9" hits="1" branch="false"/>
3681
+ <line number="12" hits="1" branch="false"/>
2488
3682
  <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)"/>
3683
+ <line number="20" hits="0" branch="false"/>
3684
+ <line number="21" hits="0" branch="false"/>
3685
+ <line number="22" hits="0" branch="false"/>
3686
+ <line number="28" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2494
3687
  <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"/>
3688
+ <line number="32" hits="0" branch="false"/>
3689
+ <line number="37" hits="0" branch="false"/>
3690
+ <line number="45" hits="1" branch="false"/>
3691
+ <line number="50" hits="0" branch="false"/>
3692
+ <line number="51" hits="0" branch="false"/>
3693
+ <line number="52" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3694
+ <line number="53" hits="0" branch="false"/>
3695
+ <line number="54" hits="0" branch="false"/>
3696
+ <line number="55" hits="0" branch="false"/>
3697
+ <line number="58" hits="0" branch="false"/>
3698
+ <line number="61" hits="0" branch="false"/>
2504
3699
  <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)"/>
3700
+ <line number="72" hits="0" branch="false"/>
3701
+ <line number="73" hits="0" branch="false"/>
3702
+ <line number="74" hits="0" branch="false"/>
3703
+ <line number="75" hits="0" branch="false"/>
3704
+ <line number="78" hits="0" branch="false"/>
3705
+ <line number="79" hits="0" branch="false"/>
3706
+ <line number="81" hits="0" branch="true" condition-coverage="0% (0/1)"/>
3707
+ <line number="82" hits="0" branch="false"/>
2510
3708
  <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"/>
3709
+ <line number="88" hits="0" branch="false"/>
3710
+ <line number="92" hits="2" branch="false"/>
3711
+ <line number="93" hits="2" branch="true" condition-coverage="66.66666666666666% (4/6)"/>
3712
+ <line number="94" hits="2" branch="true" condition-coverage="66.66666666666666% (4/6)"/>
3713
+ <line number="95" hits="2" branch="false"/>
3714
+ <line number="96" hits="2" branch="true" condition-coverage="66.66666666666666% (4/6)"/>
3715
+ <line number="98" hits="2" branch="false"/>
3716
+ <line number="99" hits="2" branch="false"/>
3717
+ <line number="107" hits="2" branch="false"/>
3718
+ <line number="110" hits="2" branch="false"/>
3719
+ <line number="112" hits="2" branch="true" condition-coverage="66.66666666666666% (2/3)"/>
3720
+ <line number="115" hits="2" branch="false"/>
3721
+ <line number="118" hits="0" branch="false"/>
2521
3722
  <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
3723
  <line number="123" hits="0" branch="false"/>
3724
+ <line number="124" hits="0" branch="false"/>
3725
+ <line number="125" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2526
3726
  <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"/>
3727
+ <line number="132" hits="0" branch="false"/>
3728
+ <line number="134" hits="0" branch="false"/>
3729
+ <line number="135" hits="0" branch="true" condition-coverage="0% (0/3)"/>
2531
3730
  <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"/>
3731
+ <line number="137" hits="0" branch="false"/>
3732
+ <line number="139" hits="0" branch="true" condition-coverage="0% (0/2)"/>
3733
+ <line number="144" hits="0" branch="false"/>
3734
+ <line number="150" hits="0" branch="false"/>
3735
+ <line number="157" hits="0" branch="false"/>
2558
3736
  </lines>
2559
3737
  </class>
2560
- <class name="sdfuOperations.ts" filename="src/Device/sdfuOperations.ts" line-rate="0.1648" branch-rate="0">
3738
+ <class name="sdfuOperations.ts" filename="src/Device/sdfuOperations.ts" line-rate="0.1595" branch-rate="0">
2561
3739
  <methods>
2562
3740
  <method name="(anonymous_8)" hits="0" signature="()V">
2563
3741
  <lines>
@@ -2576,27 +3754,27 @@
2576
3754
  </method>
2577
3755
  <method name="(anonymous_11)" hits="0" signature="()V">
2578
3756
  <lines>
2579
- <line number="72" hits="0"/>
3757
+ <line number="69" hits="0"/>
2580
3758
  </lines>
2581
3759
  </method>
2582
3760
  <method name="(anonymous_12)" hits="0" signature="()V">
2583
3761
  <lines>
2584
- <line number="85" hits="0"/>
3762
+ <line number="82" hits="0"/>
2585
3763
  </lines>
2586
3764
  </method>
2587
3765
  <method name="(anonymous_13)" hits="0" signature="()V">
2588
3766
  <lines>
2589
- <line number="91" hits="0"/>
3767
+ <line number="88" hits="0"/>
2590
3768
  </lines>
2591
3769
  </method>
2592
3770
  <method name="(anonymous_14)" hits="0" signature="()V">
2593
3771
  <lines>
2594
- <line number="115" hits="0"/>
3772
+ <line number="111" hits="0"/>
2595
3773
  </lines>
2596
3774
  </method>
2597
3775
  <method name="(anonymous_15)" hits="0" signature="()V">
2598
3776
  <lines>
2599
- <line number="141" hits="0"/>
3777
+ <line number="145" hits="0"/>
2600
3778
  </lines>
2601
3779
  </method>
2602
3780
  <method name="(anonymous_16)" hits="0" signature="()V">
@@ -2606,227 +3784,222 @@
2606
3784
  </method>
2607
3785
  <method name="(anonymous_17)" hits="0" signature="()V">
2608
3786
  <lines>
2609
- <line number="157" hits="0"/>
3787
+ <line number="164" hits="0"/>
2610
3788
  </lines>
2611
3789
  </method>
2612
3790
  <method name="(anonymous_18)" hits="0" signature="()V">
2613
3791
  <lines>
2614
- <line number="164" hits="0"/>
3792
+ <line number="170" hits="0"/>
2615
3793
  </lines>
2616
3794
  </method>
2617
3795
  <method name="(anonymous_19)" hits="0" signature="()V">
2618
3796
  <lines>
2619
- <line number="178" hits="0"/>
3797
+ <line number="175" hits="0"/>
2620
3798
  </lines>
2621
3799
  </method>
2622
3800
  <method name="(anonymous_20)" hits="0" signature="()V">
2623
3801
  <lines>
2624
- <line number="182" hits="0"/>
3802
+ <line number="181" hits="0"/>
2625
3803
  </lines>
2626
3804
  </method>
2627
3805
  <method name="(anonymous_21)" hits="0" signature="()V">
2628
3806
  <lines>
2629
- <line number="187" hits="0"/>
3807
+ <line number="197" hits="0"/>
2630
3808
  </lines>
2631
3809
  </method>
2632
3810
  <method name="(anonymous_22)" hits="0" signature="()V">
2633
3811
  <lines>
2634
- <line number="193" hits="0"/>
3812
+ <line number="202" hits="0"/>
2635
3813
  </lines>
2636
3814
  </method>
2637
3815
  <method name="(anonymous_23)" hits="0" signature="()V">
2638
3816
  <lines>
2639
- <line number="209" hits="0"/>
3817
+ <line number="208" hits="0"/>
2640
3818
  </lines>
2641
3819
  </method>
2642
3820
  <method name="(anonymous_24)" hits="0" signature="()V">
2643
3821
  <lines>
2644
- <line number="214" hits="0"/>
3822
+ <line number="225" hits="0"/>
2645
3823
  </lines>
2646
3824
  </method>
2647
3825
  <method name="(anonymous_25)" hits="0" signature="()V">
2648
3826
  <lines>
2649
- <line number="220" hits="0"/>
3827
+ <line number="245" hits="0"/>
2650
3828
  </lines>
2651
3829
  </method>
2652
3830
  <method name="(anonymous_26)" hits="0" signature="()V">
2653
3831
  <lines>
2654
- <line number="237" hits="0"/>
3832
+ <line number="251" hits="0"/>
2655
3833
  </lines>
2656
3834
  </method>
2657
3835
  <method name="(anonymous_27)" hits="0" signature="()V">
2658
3836
  <lines>
2659
- <line number="257" hits="0"/>
3837
+ <line number="255" hits="0"/>
2660
3838
  </lines>
2661
3839
  </method>
2662
3840
  <method name="(anonymous_28)" hits="0" signature="()V">
2663
3841
  <lines>
2664
- <line number="263" hits="0"/>
3842
+ <line number="259" hits="0"/>
2665
3843
  </lines>
2666
3844
  </method>
2667
3845
  <method name="(anonymous_29)" hits="0" signature="()V">
2668
3846
  <lines>
2669
- <line number="267" hits="0"/>
3847
+ <line number="266" hits="0"/>
2670
3848
  </lines>
2671
3849
  </method>
2672
- <method name="(anonymous_30)" hits="0" signature="()V">
3850
+ <method name="parseFirmwareImage" hits="0" signature="()V">
2673
3851
  <lines>
2674
- <line number="271" hits="0"/>
3852
+ <line number="304" hits="0"/>
2675
3853
  </lines>
2676
3854
  </method>
2677
3855
  <method name="(anonymous_31)" hits="0" signature="()V">
2678
3856
  <lines>
2679
- <line number="278" hits="0"/>
3857
+ <line number="311" hits="0"/>
2680
3858
  </lines>
2681
3859
  </method>
2682
- <method name="parseFirmwareImage" hits="0" signature="()V">
3860
+ <method name="calculateSHA256Hash" hits="0" signature="()V">
2683
3861
  <lines>
2684
- <line number="316" hits="0"/>
3862
+ <line number="321" hits="0"/>
2685
3863
  </lines>
2686
3864
  </method>
2687
3865
  <method name="(anonymous_33)" hits="0" signature="()V">
2688
3866
  <lines>
2689
- <line number="323" hits="0"/>
3867
+ <line number="333" hits="0"/>
2690
3868
  </lines>
2691
3869
  </method>
2692
- <method name="calculateSHA256Hash" hits="0" signature="()V">
3870
+ <method name="(anonymous_34)" hits="0" signature="()V">
2693
3871
  <lines>
2694
- <line number="333" hits="0"/>
3872
+ <line number="334" hits="0"/>
2695
3873
  </lines>
2696
3874
  </method>
2697
3875
  <method name="(anonymous_35)" hits="0" signature="()V">
2698
3876
  <lines>
2699
- <line number="345" hits="0"/>
3877
+ <line number="352" hits="0"/>
2700
3878
  </lines>
2701
3879
  </method>
2702
3880
  <method name="(anonymous_36)" hits="0" signature="()V">
2703
3881
  <lines>
2704
- <line number="346" hits="0"/>
3882
+ <line number="353" hits="0"/>
2705
3883
  </lines>
2706
3884
  </method>
2707
3885
  <method name="(anonymous_37)" hits="0" signature="()V">
2708
3886
  <lines>
2709
- <line number="364" hits="0"/>
3887
+ <line number="366" hits="0"/>
2710
3888
  </lines>
2711
3889
  </method>
2712
3890
  <method name="(anonymous_38)" hits="0" signature="()V">
2713
3891
  <lines>
2714
- <line number="365" hits="0"/>
3892
+ <line number="367" hits="0"/>
2715
3893
  </lines>
2716
3894
  </method>
2717
3895
  <method name="(anonymous_39)" hits="0" signature="()V">
2718
3896
  <lines>
2719
- <line number="378" hits="0"/>
3897
+ <line number="397" hits="0"/>
2720
3898
  </lines>
2721
3899
  </method>
2722
- <method name="(anonymous_40)" hits="0" signature="()V">
3900
+ <method name="(anonymous_41)" hits="0" signature="()V">
2723
3901
  <lines>
2724
- <line number="379" hits="0"/>
3902
+ <line number="411" hits="0"/>
2725
3903
  </lines>
2726
3904
  </method>
2727
- <method name="(anonymous_41)" hits="0" signature="()V">
3905
+ <method name="(anonymous_42)" hits="0" signature="()V">
2728
3906
  <lines>
2729
- <line number="409" hits="0"/>
3907
+ <line number="482" hits="0"/>
2730
3908
  </lines>
2731
3909
  </method>
2732
3910
  <method name="(anonymous_43)" hits="0" signature="()V">
2733
3911
  <lines>
2734
- <line number="423" hits="0"/>
3912
+ <line number="486" hits="0"/>
2735
3913
  </lines>
2736
3914
  </method>
2737
3915
  <method name="(anonymous_44)" hits="0" signature="()V">
2738
3916
  <lines>
2739
- <line number="496" hits="0"/>
3917
+ <line number="502" hits="0"/>
2740
3918
  </lines>
2741
3919
  </method>
2742
3920
  <method name="(anonymous_45)" hits="0" signature="()V">
2743
3921
  <lines>
2744
- <line number="521" hits="0"/>
3922
+ <line number="515" hits="0"/>
2745
3923
  </lines>
2746
3924
  </method>
2747
3925
  <method name="(anonymous_46)" hits="0" signature="()V">
2748
3926
  <lines>
2749
- <line number="531" hits="0"/>
3927
+ <line number="520" hits="0"/>
2750
3928
  </lines>
2751
3929
  </method>
2752
3930
  <method name="(anonymous_47)" hits="0" signature="()V">
2753
3931
  <lines>
2754
- <line number="536" hits="0"/>
3932
+ <line number="521" hits="0"/>
2755
3933
  </lines>
2756
3934
  </method>
2757
3935
  <method name="(anonymous_48)" hits="0" signature="()V">
2758
3936
  <lines>
2759
- <line number="537" hits="0"/>
3937
+ <line number="522" hits="0"/>
2760
3938
  </lines>
2761
3939
  </method>
2762
3940
  <method name="(anonymous_49)" hits="0" signature="()V">
2763
3941
  <lines>
2764
- <line number="538" hits="0"/>
3942
+ <line number="540" hits="0"/>
2765
3943
  </lines>
2766
3944
  </method>
2767
3945
  <method name="(anonymous_50)" hits="0" signature="()V">
2768
3946
  <lines>
2769
- <line number="556" hits="0"/>
3947
+ <line number="544" hits="0"/>
2770
3948
  </lines>
2771
3949
  </method>
2772
3950
  <method name="(anonymous_51)" hits="0" signature="()V">
2773
3951
  <lines>
2774
- <line number="560" hits="0"/>
3952
+ <line number="549" hits="0"/>
2775
3953
  </lines>
2776
3954
  </method>
2777
3955
  <method name="(anonymous_52)" hits="0" signature="()V">
2778
3956
  <lines>
2779
- <line number="565" hits="0"/>
3957
+ <line number="550" hits="0"/>
2780
3958
  </lines>
2781
3959
  </method>
2782
3960
  <method name="(anonymous_53)" hits="0" signature="()V">
2783
3961
  <lines>
2784
- <line number="566" hits="0"/>
3962
+ <line number="553" hits="0"/>
2785
3963
  </lines>
2786
3964
  </method>
2787
3965
  <method name="(anonymous_54)" hits="0" signature="()V">
2788
3966
  <lines>
2789
- <line number="569" hits="0"/>
3967
+ <line number="553" hits="0"/>
2790
3968
  </lines>
2791
3969
  </method>
2792
3970
  <method name="(anonymous_55)" hits="0" signature="()V">
2793
3971
  <lines>
2794
- <line number="569" hits="0"/>
3972
+ <line number="558" hits="0"/>
2795
3973
  </lines>
2796
3974
  </method>
2797
3975
  <method name="(anonymous_56)" hits="0" signature="()V">
2798
3976
  <lines>
2799
- <line number="574" hits="0"/>
3977
+ <line number="558" hits="0"/>
2800
3978
  </lines>
2801
3979
  </method>
2802
3980
  <method name="(anonymous_57)" hits="0" signature="()V">
2803
3981
  <lines>
2804
- <line number="574" hits="0"/>
3982
+ <line number="562" hits="0"/>
2805
3983
  </lines>
2806
3984
  </method>
2807
3985
  <method name="(anonymous_58)" hits="0" signature="()V">
2808
3986
  <lines>
2809
- <line number="578" hits="0"/>
3987
+ <line number="573" hits="0"/>
2810
3988
  </lines>
2811
3989
  </method>
2812
3990
  <method name="(anonymous_59)" hits="0" signature="()V">
2813
3991
  <lines>
2814
- <line number="589" hits="0"/>
3992
+ <line number="583" hits="0"/>
2815
3993
  </lines>
2816
3994
  </method>
2817
3995
  <method name="(anonymous_60)" hits="0" signature="()V">
2818
3996
  <lines>
2819
- <line number="599" hits="0"/>
3997
+ <line number="583" hits="0"/>
2820
3998
  </lines>
2821
3999
  </method>
2822
4000
  <method name="(anonymous_61)" hits="0" signature="()V">
2823
4001
  <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"/>
4002
+ <line number="584" hits="0"/>
2830
4003
  </lines>
2831
4004
  </method>
2832
4005
  </methods>
@@ -2835,9 +4008,8 @@
2835
4008
  <line number="8" hits="2" branch="false"/>
2836
4009
  <line number="9" hits="2" branch="false"/>
2837
4010
  <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"/>
4011
+ <line number="12" hits="2" branch="false"/>
4012
+ <line number="14" hits="2" branch="false"/>
2841
4013
  <line number="16" hits="2" branch="false"/>
2842
4014
  <line number="17" hits="2" branch="false"/>
2843
4015
  <line number="19" hits="2" branch="false"/>
@@ -2865,160 +4037,161 @@
2865
4037
  <line number="62" hits="0" branch="false"/>
2866
4038
  <line number="65" hits="2" branch="false"/>
2867
4039
  <line number="66" hits="0" branch="false"/>
2868
- <line number="71" hits="0" branch="false"/>
4040
+ <line number="68" hits="0" branch="false"/>
4041
+ <line number="69" hits="0" branch="false"/>
4042
+ <line number="71" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2869
4043
  <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"/>
4044
+ <line number="78" hits="0" branch="false"/>
4045
+ <line number="82" hits="2" branch="false"/>
4046
+ <line number="88" hits="0" branch="false"/>
4047
+ <line number="89" hits="0" branch="false"/>
4048
+ <line number="90" hits="0" branch="false"/>
2874
4049
  <line number="91" hits="0" branch="false"/>
2875
- <line number="92" hits="0" branch="false"/>
2876
4050
  <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"/>
2888
- <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"/>
4051
+ <line number="95" hits="0" branch="false"/>
4052
+ <line number="97" hits="0" branch="false"/>
4053
+ <line number="107" hits="0" branch="false"/>
4054
+ <line number="108" hits="0" branch="false"/>
4055
+ <line number="112" hits="0" branch="false"/>
4056
+ <line number="119" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4057
+ <line number="120" hits="0" branch="false"/>
4058
+ <line number="125" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4059
+ <line number="127" hits="0" branch="false"/>
4060
+ <line number="137" hits="0" branch="false"/>
4061
+ <line number="138" hits="0" branch="false"/>
4062
+ <line number="139" hits="0" branch="false"/>
4063
+ <line number="145" hits="2" branch="false"/>
4064
+ <line number="151" hits="0" branch="false"/>
4065
+ <line number="152" hits="0" branch="false"/>
4066
+ <line number="164" hits="0" branch="false"/>
2893
4067
  <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)"/>
4068
+ <line number="169" hits="0" branch="false"/>
4069
+ <line number="170" hits="2" branch="false"/>
4070
+ <line number="175" hits="0" branch="false"/>
4071
+ <line number="176" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4072
+ <line number="177" hits="0" branch="false"/>
4073
+ <line number="182" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4074
+ <line number="183" hits="0" branch="false"/>
4075
+ <line number="186" hits="0" branch="false"/>
4076
+ <line number="191" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4077
+ <line number="192" hits="0" branch="false"/>
4078
+ <line number="196" hits="0" branch="false"/>
4079
+ <line number="197" hits="2" branch="false"/>
4080
+ <line number="202" hits="0" branch="false"/>
4081
+ <line number="203" hits="0" branch="true" condition-coverage="0% (0/2)"/>
2904
4082
  <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"/>
4083
+ <line number="209" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4084
+ <line number="210" hits="0" branch="false"/>
4085
+ <line number="215" hits="0" branch="false"/>
4086
+ <line number="221" hits="0" branch="false"/>
4087
+ <line number="225" hits="2" branch="false"/>
4088
+ <line number="226" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2912
4089
  <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"/>
4090
+ <line number="230" hits="0" branch="false"/>
4091
+ <line number="232" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4092
+ <line number="238" hits="0" branch="false"/>
4093
+ <line number="241" hits="0" branch="false"/>
4094
+ <line number="245" hits="2" branch="false"/>
4095
+ <line number="251" hits="0" branch="false"/>
4096
+ <line number="252" hits="0" branch="false"/>
4097
+ <line number="256" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4098
+ <line number="257" hits="0" branch="false"/>
4099
+ <line number="260" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4100
+ <line number="261" hits="0" branch="false"/>
2923
4101
  <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"/>
4102
+ <line number="266" hits="0" branch="false"/>
4103
+ <line number="267" hits="0" branch="false"/>
4104
+ <line number="275" hits="0" branch="false"/>
4105
+ <line number="290" hits="0" branch="false"/>
4106
+ <line number="306" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4107
+ <line number="308" hits="0" branch="false"/>
4108
+ <line number="309" hits="0" branch="false"/>
4109
+ <line number="310" hits="0" branch="false"/>
4110
+ <line number="311" hits="0" branch="false"/>
4111
+ <line number="312" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4112
+ <line number="313" hits="0" branch="false"/>
4113
+ <line number="315" hits="0" branch="false"/>
2936
4114
  <line number="322" hits="0" branch="false"/>
2937
4115
  <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"/>
4116
+ <line number="324" hits="0" branch="false"/>
4117
+ <line number="333" hits="2" branch="false"/>
2941
4118
  <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"/>
4119
+ <line number="352" hits="0" branch="false"/>
4120
+ <line number="353" hits="0" branch="false"/>
4121
+ <line number="355" hits="0" branch="false"/>
4122
+ <line number="366" hits="2" branch="false"/>
2948
4123
  <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"/>
4124
+ <line number="368" hits="0" branch="false"/>
4125
+ <line number="369" hits="0" branch="false"/>
4126
+ <line number="370" hits="0" branch="false"/>
4127
+ <line number="372" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4128
+ <line number="373" hits="0" branch="false"/>
4129
+ <line number="377" hits="0" branch="false"/>
4130
+ <line number="378" hits="0" branch="false"/>
4131
+ <line number="381" hits="0" branch="true" condition-coverage="0% (0/1)"/>
2953
4132
  <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"/>
4133
+ <line number="386" hits="0" branch="false"/>
4134
+ <line number="387" hits="0" branch="false"/>
2957
4135
  <line number="390" hits="0" branch="false"/>
2958
- <line number="393" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4136
+ <line number="391" hits="0" branch="false"/>
4137
+ <line number="392" hits="0" branch="false"/>
2959
4138
  <line number="394" hits="0" branch="false"/>
4139
+ <line number="397" hits="2" branch="false"/>
2960
4140
  <line number="398" hits="0" branch="false"/>
2961
4141
  <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"/>
4142
+ <line number="400" hits="0" branch="false"/>
2968
4143
  <line number="411" hits="0" branch="false"/>
2969
4144
  <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)"/>
4145
+ <line number="415" hits="0" branch="false"/>
4146
+ <line number="416" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4147
+ <line number="418" hits="0" branch="false"/>
4148
+ <line number="419" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4149
+ <line number="420" hits="0" branch="false"/>
4150
+ <line number="422" hits="0" branch="false"/>
2976
4151
  <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"/>
4152
+ <line number="436" hits="0" branch="false"/>
4153
+ <line number="443" hits="0" branch="false"/>
4154
+ <line number="445" hits="0" branch="false"/>
4155
+ <line number="456" hits="0" branch="false"/>
2981
4156
  <line number="457" hits="0" branch="false"/>
2982
- <line number="468" hits="0" branch="false"/>
4157
+ <line number="463" hits="0" branch="false"/>
4158
+ <line number="465" hits="0" branch="false"/>
4159
+ <line number="467" hits="0" branch="false"/>
2983
4160
  <line number="469" hits="0" branch="false"/>
2984
- <line number="475" hits="0" branch="false"/>
2985
- <line number="477" hits="0" branch="false"/>
2986
4161
  <line number="479" hits="0" branch="false"/>
2987
- <line number="481" hits="0" branch="false"/>
4162
+ <line number="483" hits="0" branch="true" condition-coverage="0% (0/4)"/>
4163
+ <line number="487" hits="0" branch="false"/>
2988
4164
  <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"/>
4165
+ <line number="491" hits="0" branch="false"/>
4166
+ <line number="500" hits="0" branch="false"/>
4167
+ <line number="503" hits="0" branch="true" condition-coverage="0% (0/1)"/>
4168
+ <line number="504" hits="0" branch="false"/>
2994
4169
  <line number="509" hits="0" branch="false"/>
2995
- <line number="518" hits="0" branch="false"/>
4170
+ <line number="515" hits="2" branch="false"/>
4171
+ <line number="520" hits="0" branch="false"/>
4172
+ <line number="521" hits="0" branch="false"/>
2996
4173
  <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"/>
4174
+ <line number="523" hits="0" branch="false"/>
4175
+ <line number="532" hits="0" branch="false"/>
4176
+ <line number="535" hits="0" branch="false"/>
4177
+ <line number="540" hits="2" branch="false"/>
4178
+ <line number="543" hits="0" branch="false"/>
4179
+ <line number="545" hits="0" branch="true" condition-coverage="0% (0/5)"/>
4180
+ <line number="550" hits="0" branch="false"/>
4181
+ <line number="553" hits="0" branch="false"/>
4182
+ <line number="554" hits="0" branch="false"/>
4183
+ <line number="558" hits="0" branch="false"/>
3005
4184
  <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"/>
4185
+ <line number="563" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4186
+ <line number="564" hits="0" branch="false"/>
4187
+ <line number="568" hits="0" branch="false"/>
3009
4188
  <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"/>
4189
+ <line number="573" hits="0" branch="false"/>
4190
+ <line number="577" hits="0" branch="false"/>
4191
+ <line number="583" hits="0" branch="false"/>
3014
4192
  <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"/>
4193
+ <line number="585" hits="0" branch="false"/>
4194
+ <line number="589" hits="2" branch="false"/>
3022
4195
  </lines>
3023
4196
  </class>
3024
4197
  </classes>
@@ -3101,7 +4274,7 @@
3101
4274
  </class>
3102
4275
  </classes>
3103
4276
  </package>
3104
- <package name="src.Device.DeviceSelector" line-rate="0.888" branch-rate="0.6851">
4277
+ <package name="src.Device.DeviceSelector" line-rate="0.887" branch-rate="0.6923">
3105
4278
  <classes>
3106
4279
  <class name="BasicDeviceInfo.tsx" filename="src/Device/DeviceSelector/BasicDeviceInfo.tsx" line-rate="0.7777" branch-rate="0.5789">
3107
4280
  <methods>
@@ -3193,51 +4366,51 @@
3193
4366
  <line number="27" hits="34" branch="false"/>
3194
4367
  </lines>
3195
4368
  </class>
3196
- <class name="DeviceSelector.tsx" filename="src/Device/DeviceSelector/DeviceSelector.tsx" line-rate="0.9183" branch-rate="0.7857">
4369
+ <class name="DeviceSelector.tsx" filename="src/Device/DeviceSelector/DeviceSelector.tsx" line-rate="0.9166" branch-rate="0.8332999999999999">
3197
4370
  <methods>
3198
4371
  <method name="(anonymous_5)" hits="10" signature="()V">
3199
4372
  <lines>
3200
- <line number="50" hits="10"/>
4373
+ <line number="45" hits="10"/>
3201
4374
  </lines>
3202
4375
  </method>
3203
4376
  <method name="(anonymous_6)" hits="26" signature="()V">
3204
4377
  <lines>
3205
- <line number="51" hits="26"/>
4378
+ <line number="46" hits="26"/>
3206
4379
  </lines>
3207
4380
  </method>
3208
4381
  <method name="(anonymous_7)" hits="2" signature="()V">
3209
4382
  <lines>
3210
- <line number="69" hits="2"/>
4383
+ <line number="64" hits="2"/>
3211
4384
  </lines>
3212
4385
  </method>
3213
4386
  <method name="(anonymous_8)" hits="6" signature="()V">
3214
4387
  <lines>
3215
- <line number="80" hits="6"/>
4388
+ <line number="75" hits="6"/>
3216
4389
  </lines>
3217
4390
  </method>
3218
4391
  <method name="(anonymous_9)" hits="11" signature="()V">
3219
4392
  <lines>
3220
- <line number="106" hits="11"/>
4393
+ <line number="101" hits="11"/>
3221
4394
  </lines>
3222
4395
  </method>
3223
4396
  <method name="(anonymous_10)" hits="8" signature="()V">
3224
4397
  <lines>
3225
- <line number="129" hits="8"/>
4398
+ <line number="120" hits="8"/>
3226
4399
  </lines>
3227
4400
  </method>
3228
4401
  <method name="(anonymous_11)" hits="11" signature="()V">
3229
4402
  <lines>
3230
- <line number="132" hits="11"/>
4403
+ <line number="123" hits="11"/>
3231
4404
  </lines>
3232
4405
  </method>
3233
4406
  <method name="(anonymous_12)" hits="0" signature="()V">
3234
4407
  <lines>
3235
- <line number="141" hits="0"/>
4408
+ <line number="132" hits="0"/>
3236
4409
  </lines>
3237
4410
  </method>
3238
4411
  <method name="(anonymous_13)" hits="6" signature="()V">
3239
4412
  <lines>
3240
- <line number="159" hits="6"/>
4413
+ <line number="150" hits="6"/>
3241
4414
  </lines>
3242
4415
  </method>
3243
4416
  </methods>
@@ -3253,44 +4426,43 @@
3253
4426
  <line number="30" hits="1" branch="false"/>
3254
4427
  <line number="31" hits="1" branch="false"/>
3255
4428
  <line number="32" hits="1" branch="false"/>
3256
- <line number="50" hits="1" branch="false"/>
3257
- <line number="51" hits="11" branch="false"/>
4429
+ <line number="45" hits="1" branch="false"/>
4430
+ <line number="46" hits="11" branch="false"/>
4431
+ <line number="56" hits="26" branch="false"/>
4432
+ <line number="57" hits="26" branch="false"/>
4433
+ <line number="59" hits="26" branch="false"/>
4434
+ <line number="60" hits="26" branch="false"/>
3258
4435
  <line number="61" hits="26" branch="false"/>
3259
- <line number="62" hits="26" branch="false"/>
4436
+ <line number="62" hits="26" branch="true" condition-coverage="100% (2/2)"/>
3260
4437
  <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"/>
4438
+ <line number="65" hits="2" branch="false"/>
4439
+ <line number="66" hits="2" branch="false"/>
4440
+ <line number="67" hits="2" branch="false"/>
4441
+ <line number="68" hits="2" branch="false"/>
4442
+ <line number="74" hits="26" branch="false"/>
4443
+ <line number="76" hits="6" branch="false"/>
4444
+ <line number="77" hits="6" branch="false"/>
4445
+ <line number="78" hits="6" branch="false"/>
4446
+ <line number="79" hits="6" branch="false"/>
4447
+ <line number="80" hits="6" branch="false"/>
4448
+ <line number="81" hits="6" branch="true" condition-coverage="100% (1/1)"/>
4449
+ <line number="82" hits="4" branch="false"/>
4450
+ <line number="101" hits="26" branch="false"/>
4451
+ <line number="102" hits="11" branch="false"/>
4452
+ <line number="120" hits="26" branch="false"/>
4453
+ <line number="121" hits="8" branch="false"/>
4454
+ <line number="123" hits="26" branch="false"/>
4455
+ <line number="124" hits="11" branch="false"/>
4456
+ <line number="125" hits="11" branch="false"/>
4457
+ <line number="128" hits="26" branch="false"/>
4458
+ <line number="132" hits="0" branch="false"/>
4459
+ <line number="135" hits="26" branch="false"/>
4460
+ <line number="151" hits="6" branch="true" condition-coverage="0% (0/1)"/>
4461
+ <line number="152" hits="0" branch="false"/>
4462
+ <line number="153" hits="0" branch="false"/>
4463
+ <line number="156" hits="6" branch="true" condition-coverage="0% (0/1)"/>
4464
+ <line number="157" hits="0" branch="false"/>
4465
+ <line number="160" hits="6" branch="false"/>
3294
4466
  </lines>
3295
4467
  </class>
3296
4468
  <class name="Favorite.tsx" filename="src/Device/DeviceSelector/Favorite.tsx" line-rate="0.8571" branch-rate="0.5">
@@ -3746,36 +4918,37 @@
3746
4918
  <methods>
3747
4919
  <method name="(anonymous_9)" hits="56" signature="()V">
3748
4920
  <lines>
3749
- <line number="203" hits="56"/>
4921
+ <line number="202" hits="56"/>
3750
4922
  </lines>
3751
4923
  </method>
3752
4924
  <method name="(anonymous_11)" hits="56" signature="()V">
3753
4925
  <lines>
3754
- <line number="221" hits="56"/>
4926
+ <line number="220" hits="56"/>
3755
4927
  </lines>
3756
4928
  </method>
3757
4929
  <method name="(anonymous_12)" hits="28" signature="()V">
3758
4930
  <lines>
3759
- <line number="224" hits="28"/>
4931
+ <line number="223" hits="28"/>
3760
4932
  </lines>
3761
4933
  </method>
3762
4934
  <method name="(anonymous_13)" hits="28" signature="()V">
3763
4935
  <lines>
3764
- <line number="231" hits="28"/>
4936
+ <line number="230" hits="28"/>
3765
4937
  </lines>
3766
4938
  </method>
3767
4939
  <method name="(anonymous_14)" hits="0" signature="()V">
3768
4940
  <lines>
3769
- <line number="242" hits="0"/>
4941
+ <line number="241" hits="0"/>
3770
4942
  </lines>
3771
4943
  </method>
3772
4944
  <method name="(anonymous_15)" hits="0" signature="()V">
3773
4945
  <lines>
3774
- <line number="246" hits="0"/>
4946
+ <line number="245" hits="0"/>
3775
4947
  </lines>
3776
4948
  </method>
3777
4949
  </methods>
3778
4950
  <lines>
4951
+ <line number="34" hits="3" branch="false"/>
3779
4952
  <line number="35" hits="3" branch="false"/>
3780
4953
  <line number="36" hits="3" branch="false"/>
3781
4954
  <line number="37" hits="3" branch="false"/>
@@ -3783,32 +4956,31 @@
3783
4956
  <line number="39" hits="3" branch="false"/>
3784
4957
  <line number="40" hits="3" branch="false"/>
3785
4958
  <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)"/>
4959
+ <line number="69" hits="3" branch="false"/>
4960
+ <line number="186" hits="56" branch="true" condition-coverage="75% (3/4)"/>
4961
+ <line number="188" hits="3" branch="false"/>
4962
+ <line number="190" hits="112" branch="true" condition-coverage="83.33333333333334% (5/6)"/>
4963
+ <line number="192" hits="0" branch="false"/>
4964
+ <line number="202" hits="3" branch="false"/>
4965
+ <line number="203" hits="56" branch="true" condition-coverage="0% (0/1)"/>
4966
+ <line number="204" hits="0" branch="true" condition-coverage="0% (0/7)"/>
4967
+ <line number="205" hits="0" branch="false"/>
4968
+ <line number="207" hits="0" branch="true" condition-coverage="0% (0/5)"/>
4969
+ <line number="208" hits="0" branch="false"/>
4970
+ <line number="211" hits="56" branch="false"/>
4971
+ <line number="214" hits="56" branch="false"/>
4972
+ <line number="220" hits="28" branch="false"/>
4973
+ <line number="221" hits="56" branch="true" condition-coverage="100% (3/3)"/>
4974
+ <line number="223" hits="3" branch="false"/>
4975
+ <line number="226" hits="28" branch="true" condition-coverage="100% (3/3)"/>
4976
+ <line number="230" hits="28" branch="false"/>
4977
+ <line number="234" hits="28" branch="true" condition-coverage="66.66666666666666% (2/3)"/>
4978
+ <line number="235" hits="0" branch="false"/>
4979
+ <line number="238" hits="28" branch="true" condition-coverage="14.285714285714285% (1/7)"/>
4980
+ <line number="241" hits="3" branch="false"/>
4981
+ <line number="242" hits="0" branch="true" condition-coverage="0% (0/2)"/>
4982
+ <line number="245" hits="3" branch="false"/>
4983
+ <line number="246" hits="0" branch="true" condition-coverage="0% (0/2)"/>
3812
4984
  </lines>
3813
4985
  </class>
3814
4986
  </classes>
@@ -4028,7 +5200,7 @@
4028
5200
  <lines>
4029
5201
  <line number="7" hits="2" branch="false"/>
4030
5202
  <line number="8" hits="2" branch="false"/>
4031
- <line number="11" hits="2" branch="false"/>
5203
+ <line number="10" hits="2" branch="false"/>
4032
5204
  <line number="12" hits="2" branch="false"/>
4033
5205
  <line number="13" hits="2" branch="false"/>
4034
5206
  <line number="14" hits="2" branch="false"/>
@@ -4608,84 +5780,76 @@
4608
5780
  </class>
4609
5781
  </classes>
4610
5782
  </package>
4611
- <package name="src.Log" line-rate="0.6818000000000001" branch-rate="0">
5783
+ <package name="src.Log" line-rate="0.6842" branch-rate="0">
4612
5784
  <classes>
4613
- <class name="logSlice.ts" filename="src/Log/logSlice.ts" line-rate="0.6818000000000001" branch-rate="0">
5785
+ <class name="logSlice.ts" filename="src/Log/logSlice.ts" line-rate="0.6842" branch-rate="0">
4614
5786
  <methods>
4615
- <method name="(anonymous_10)" hits="0" signature="()V">
5787
+ <method name="(anonymous_9)" hits="0" signature="()V">
4616
5788
  <lines>
4617
5789
  <line number="27" hits="0"/>
4618
5790
  </lines>
4619
5791
  </method>
4620
- <method name="(anonymous_11)" hits="0" signature="()V">
5792
+ <method name="(anonymous_10)" hits="0" signature="()V">
4621
5793
  <lines>
4622
5794
  <line number="35" hits="0"/>
4623
5795
  </lines>
4624
5796
  </method>
4625
- <method name="(anonymous_12)" hits="10" signature="()V">
5797
+ <method name="(anonymous_11)" hits="10" signature="()V">
4626
5798
  <lines>
4627
5799
  <line number="40" hits="10"/>
4628
5800
  </lines>
4629
5801
  </method>
4630
- <method name="(anonymous_13)" hits="0" signature="()V">
5802
+ <method name="(anonymous_12)" hits="0" signature="()V">
4631
5803
  <lines>
4632
5804
  <line number="41" hits="0"/>
4633
5805
  </lines>
4634
5806
  </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">
5807
+ <method name="(anonymous_13)" hits="10" signature="()V">
4641
5808
  <lines>
4642
- <line number="44" hits="10"/>
5809
+ <line number="42" hits="10"/>
4643
5810
  </lines>
4644
5811
  </method>
4645
- <method name="(anonymous_16)" hits="0" signature="()V">
5812
+ <method name="(anonymous_14)" hits="0" signature="()V">
4646
5813
  <lines>
4647
- <line number="51" hits="0"/>
5814
+ <line number="49" hits="0"/>
4648
5815
  </lines>
4649
5816
  </method>
4650
- <method name="(anonymous_17)" hits="0" signature="()V">
5817
+ <method name="(anonymous_15)" hits="0" signature="()V">
4651
5818
  <lines>
4652
- <line number="57" hits="0"/>
5819
+ <line number="55" hits="0"/>
4653
5820
  </lines>
4654
5821
  </method>
4655
- <method name="(anonymous_18)" hits="0" signature="()V">
5822
+ <method name="(anonymous_16)" hits="0" signature="()V">
4656
5823
  <lines>
4657
- <line number="60" hits="0"/>
5824
+ <line number="58" hits="0"/>
4658
5825
  </lines>
4659
5826
  </method>
4660
- <method name="(anonymous_19)" hits="0" signature="()V">
5827
+ <method name="(anonymous_17)" hits="0" signature="()V">
4661
5828
  <lines>
4662
- <line number="63" hits="0"/>
5829
+ <line number="61" hits="0"/>
4663
5830
  </lines>
4664
5831
  </method>
4665
5832
  </methods>
4666
5833
  <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"/>
5834
+ <line number="7" hits="9" branch="false"/>
5835
+ <line number="11" hits="9" branch="false"/>
5836
+ <line number="13" hits="9" branch="false"/>
5837
+ <line number="21" hits="9" branch="false"/>
5838
+ <line number="27" hits="9" branch="false"/>
5839
+ <line number="35" hits="9" branch="false"/>
4673
5840
  <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"/>
5841
+ <line number="40" hits="10" branch="false"/>
5842
+ <line number="41" hits="9" branch="false"/>
5843
+ <line number="42" hits="9" branch="false"/>
5844
+ <line number="43" hits="10" branch="false"/>
5845
+ <line number="45" hits="9" branch="false"/>
5846
+ <line number="50" hits="0" branch="false"/>
5847
+ <line number="56" hits="0" branch="false"/>
5848
+ <line number="59" hits="0" branch="false"/>
5849
+ <line number="62" hits="0" branch="false"/>
5850
+ <line number="68" hits="49" branch="false"/>
5851
+ <line number="69" hits="0" branch="false"/>
5852
+ <line number="70" hits="9" branch="false"/>
4689
5853
  </lines>
4690
5854
  </class>
4691
5855
  </classes>
@@ -5657,84 +6821,84 @@
5657
6821
  </class>
5658
6822
  </classes>
5659
6823
  </package>
5660
- <package name="src.logging" line-rate="0.9014" branch-rate="0.6">
6824
+ <package name="src.logging" line-rate="0.8732" branch-rate="0.5333">
5661
6825
  <classes>
5662
6826
  <class name="appTransport.ts" filename="src/logging/appTransport.ts" line-rate="1" branch-rate="1">
5663
6827
  <methods>
5664
- <method name="(anonymous_3)" hits="38" signature="()V">
6828
+ <method name="(anonymous_3)" hits="27" signature="()V">
5665
6829
  <lines>
5666
- <line number="31" hits="38"/>
6830
+ <line number="31" hits="27"/>
5667
6831
  </lines>
5668
6832
  </method>
5669
- <method name="(anonymous_4)" hits="19" signature="()V">
6833
+ <method name="(anonymous_4)" hits="17" signature="()V">
5670
6834
  <lines>
5671
- <line number="18" hits="19"/>
6835
+ <line number="18" hits="17"/>
5672
6836
  </lines>
5673
6837
  </method>
5674
6838
  </methods>
5675
6839
  <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)"/>
6840
+ <line number="8" hits="12" branch="false"/>
6841
+ <line number="14" hits="17" branch="false"/>
6842
+ <line number="15" hits="17" branch="false"/>
6843
+ <line number="16" hits="17" branch="false"/>
6844
+ <line number="19" hits="17" branch="false"/>
6845
+ <line number="21" hits="17" branch="true" condition-coverage="100% (1/1)"/>
5682
6846
  <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"/>
6847
+ <line number="27" hits="16" branch="false"/>
6848
+ <line number="28" hits="16" branch="false"/>
6849
+ <line number="32" hits="27" branch="false"/>
6850
+ <line number="38" hits="27" branch="false"/>
6851
+ <line number="39" hits="27" branch="false"/>
5688
6852
  </lines>
5689
6853
  </class>
5690
6854
  <class name="describeError.ts" filename="src/logging/describeError.ts" line-rate="0.9411" branch-rate="0.8">
5691
6855
  <methods>
5692
- <method name="hasMaybeMessageAndOrigin" hits="19" signature="()V">
6856
+ <method name="hasMaybeMessageAndOrigin" hits="8" signature="()V">
5693
6857
  <lines>
5694
- <line number="12" hits="19"/>
6858
+ <line number="12" hits="8"/>
5695
6859
  </lines>
5696
6860
  </method>
5697
- <method name="(anonymous_2)" hits="20" signature="()V">
6861
+ <method name="(anonymous_2)" hits="9" signature="()V">
5698
6862
  <lines>
5699
- <line number="18" hits="20"/>
6863
+ <line number="18" hits="9"/>
5700
6864
  </lines>
5701
6865
  </method>
5702
- <method name="(anonymous_3)" hits="19" signature="()V">
6866
+ <method name="(anonymous_3)" hits="8" signature="()V">
5703
6867
  <lines>
5704
- <line number="30" hits="19"/>
6868
+ <line number="30" hits="8"/>
5705
6869
  </lines>
5706
6870
  </method>
5707
- <method name="(anonymous_4)" hits="21" signature="()V">
6871
+ <method name="(anonymous_4)" hits="10" signature="()V">
5708
6872
  <lines>
5709
- <line number="38" hits="21"/>
6873
+ <line number="38" hits="10"/>
5710
6874
  </lines>
5711
6875
  </method>
5712
6876
  </methods>
5713
6877
  <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"/>
6878
+ <line number="15" hits="8" branch="false"/>
6879
+ <line number="18" hits="13" branch="false"/>
6880
+ <line number="19" hits="9" branch="true" condition-coverage="100% (1/1)"/>
6881
+ <line number="20" hits="2" branch="false"/>
5718
6882
  <line number="23" hits="7" branch="true" condition-coverage="100% (1/1)"/>
5719
6883
  <line number="24" hits="2" branch="false"/>
5720
6884
  <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"/>
6885
+ <line number="30" hits="13" branch="false"/>
6886
+ <line number="31" hits="8" branch="true" condition-coverage="100% (1/1)"/>
6887
+ <line number="32" hits="7" branch="false"/>
5724
6888
  <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)"/>
6889
+ <line number="38" hits="13" branch="false"/>
6890
+ <line number="39" hits="10" branch="true" condition-coverage="100% (1/1)"/>
5727
6891
  <line number="40" hits="2" branch="false"/>
5728
- <line number="51" hits="19" branch="true" condition-coverage="0% (0/1)"/>
6892
+ <line number="51" hits="8" branch="true" condition-coverage="0% (0/1)"/>
5729
6893
  <line number="52" hits="0" branch="false"/>
5730
- <line number="55" hits="19" branch="false"/>
6894
+ <line number="55" hits="8" branch="false"/>
5731
6895
  </lines>
5732
6896
  </class>
5733
- <class name="index.ts" filename="src/logging/index.ts" line-rate="0.8284999999999999" branch-rate="0.44439999999999996">
6897
+ <class name="index.ts" filename="src/logging/index.ts" line-rate="0.7714" branch-rate="0.3333">
5734
6898
  <methods>
5735
- <method name="(anonymous_2)" hits="13" signature="()V">
6899
+ <method name="(anonymous_2)" hits="11" signature="()V">
5736
6900
  <lines>
5737
- <line number="21" hits="13"/>
6901
+ <line number="21" hits="11"/>
5738
6902
  </lines>
5739
6903
  </method>
5740
6904
  <method name="(anonymous_3)" hits="0" signature="()V">
@@ -5742,19 +6906,19 @@
5742
6906
  <line number="31" hits="0"/>
5743
6907
  </lines>
5744
6908
  </method>
5745
- <method name="(anonymous_4)" hits="34" signature="()V">
6909
+ <method name="(anonymous_4)" hits="20" signature="()V">
5746
6910
  <lines>
5747
- <line number="58" hits="34"/>
6911
+ <line number="58" hits="20"/>
5748
6912
  </lines>
5749
6913
  </method>
5750
- <method name="(anonymous_5)" hits="34" signature="()V">
6914
+ <method name="(anonymous_5)" hits="20" signature="()V">
5751
6915
  <lines>
5752
- <line number="62" hits="34"/>
6916
+ <line number="62" hits="20"/>
5753
6917
  </lines>
5754
6918
  </method>
5755
- <method name="(anonymous_6)" hits="34" signature="()V">
6919
+ <method name="(anonymous_6)" hits="20" signature="()V">
5756
6920
  <lines>
5757
- <line number="70" hits="34"/>
6921
+ <line number="70" hits="20"/>
5758
6922
  </lines>
5759
6923
  </method>
5760
6924
  <method name="(anonymous_7)" hits="0" signature="()V">
@@ -5772,48 +6936,48 @@
5772
6936
  <line number="88" hits="0"/>
5773
6937
  </lines>
5774
6938
  </method>
5775
- <method name="(anonymous_10)" hits="11" signature="()V">
6939
+ <method name="(anonymous_10)" hits="0" signature="()V">
5776
6940
  <lines>
5777
- <line number="96" hits="11"/>
6941
+ <line number="96" hits="0"/>
5778
6942
  </lines>
5779
6943
  </method>
5780
6944
  </methods>
5781
6945
  <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"/>
6946
+ <line number="8" hits="11" branch="false"/>
6947
+ <line number="9" hits="11" branch="false"/>
6948
+ <line number="10" hits="11" branch="false"/>
6949
+ <line number="13" hits="11" branch="false"/>
6950
+ <line number="14" hits="11" branch="false"/>
6951
+ <line number="15" hits="11" branch="false"/>
6952
+ <line number="16" hits="11" branch="false"/>
6953
+ <line number="17" hits="11" branch="false"/>
6954
+ <line number="19" hits="11" branch="false"/>
6955
+ <line number="21" hits="11" branch="false"/>
6956
+ <line number="22" hits="11" branch="false"/>
6957
+ <line number="23" hits="11" branch="false"/>
5794
6958
  <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)"/>
6959
+ <line number="27" hits="11" branch="false"/>
6960
+ <line number="30" hits="11" branch="false"/>
6961
+ <line number="31" hits="11" branch="false"/>
6962
+ <line number="33" hits="11" branch="false"/>
6963
+ <line number="35" hits="11" branch="false"/>
6964
+ <line number="42" hits="11" branch="true" condition-coverage="33.33333333333333% (1/3)"/>
5801
6965
  <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"/>
6966
+ <line number="58" hits="20" branch="false"/>
6967
+ <line number="60" hits="11" branch="false"/>
6968
+ <line number="62" hits="20" branch="false"/>
6969
+ <line number="71" hits="20" branch="true" condition-coverage="50% (1/2)"/>
6970
+ <line number="77" hits="11" branch="false"/>
5807
6971
  <line number="78" hits="0" branch="false"/>
5808
- <line number="86" hits="13" branch="false"/>
5809
- <line number="88" hits="13" branch="false"/>
6972
+ <line number="86" hits="11" branch="false"/>
6973
+ <line number="88" hits="11" branch="false"/>
5810
6974
  <line number="89" hits="0" branch="false"/>
5811
6975
  <line number="90" hits="0" branch="false"/>
5812
6976
  <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"/>
6977
+ <line number="96" hits="11" branch="false"/>
6978
+ <line number="98" hits="0" branch="true" condition-coverage="0% (0/2)"/>
6979
+ <line number="100" hits="0" branch="false"/>
6980
+ <line number="103" hits="21" branch="false"/>
5817
6981
  </lines>
5818
6982
  </class>
5819
6983
  <class name="logBuffer.ts" filename="src/logging/logBuffer.ts" line-rate="1" branch-rate="1">
@@ -5828,70 +6992,72 @@
5828
6992
  <line number="17" hits="5"/>
5829
6993
  </lines>
5830
6994
  </method>
5831
- <method name="(anonymous_5)" hits="35" signature="()V">
6995
+ <method name="(anonymous_5)" hits="24" signature="()V">
5832
6996
  <lines>
5833
- <line number="11" hits="35"/>
6997
+ <line number="11" hits="24"/>
5834
6998
  </lines>
5835
6999
  </method>
5836
- <method name="(anonymous_6)" hits="17" signature="()V">
7000
+ <method name="(anonymous_6)" hits="15" signature="()V">
5837
7001
  <lines>
5838
- <line number="22" hits="17"/>
7002
+ <line number="22" hits="15"/>
5839
7003
  </lines>
5840
7004
  </method>
5841
7005
  </methods>
5842
7006
  <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"/>
7007
+ <line number="10" hits="15" branch="false"/>
7008
+ <line number="11" hits="15" branch="false"/>
7009
+ <line number="12" hits="24" branch="false"/>
5846
7010
  <line number="15" hits="2" branch="false"/>
5847
7011
  <line number="18" hits="5" branch="false"/>
5848
- <line number="22" hits="17" branch="false"/>
5849
- <line number="24" hits="17" branch="false"/>
7012
+ <line number="22" hits="15" branch="false"/>
7013
+ <line number="24" hits="15" branch="false"/>
5850
7014
  </lines>
5851
7015
  </class>
5852
7016
  </classes>
5853
7017
  </package>
5854
- <package name="src.utils" line-rate="0.6377" branch-rate="0.2087">
7018
+ <package name="src.utils" line-rate="0.6564" branch-rate="0.1764">
5855
7019
  <classes>
5856
- <class name="appDirs.ts" filename="src/utils/appDirs.ts" line-rate="0.4" branch-rate="0">
7020
+ <class name="appDirs.ts" filename="src/utils/appDirs.ts" line-rate="0.6666" branch-rate="0">
5857
7021
  <methods>
5858
7022
  <method name="(anonymous_7)" hits="0" signature="()V">
5859
7023
  <lines>
5860
7024
  <line number="12" hits="0"/>
5861
7025
  </lines>
5862
7026
  </method>
5863
- <method name="getAppDir" hits="0" signature="()V">
7027
+ <method name="(anonymous_8)" hits="0" signature="()V">
5864
7028
  <lines>
5865
7029
  <line number="19" hits="0"/>
5866
7030
  </lines>
5867
7031
  </method>
5868
- <method name="getAppFile" hits="0" signature="()V">
7032
+ <method name="(anonymous_9)" hits="0" signature="()V">
5869
7033
  <lines>
5870
7034
  <line number="30" hits="0"/>
5871
7035
  </lines>
5872
7036
  </method>
5873
- <method name="getAppDataDir" hits="0" signature="()V">
7037
+ <method name="(anonymous_10)" hits="0" signature="()V">
5874
7038
  <lines>
5875
- <line number="39" hits="0"/>
7039
+ <line number="37" hits="0"/>
5876
7040
  </lines>
5877
7041
  </method>
5878
- <method name="getAppLogDir" hits="0" signature="()V">
7042
+ <method name="(anonymous_11)" hits="0" signature="()V">
5879
7043
  <lines>
5880
- <line number="48" hits="0"/>
7044
+ <line number="45" hits="0"/>
5881
7045
  </lines>
5882
7046
  </method>
5883
7047
  </methods>
5884
7048
  <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"/>
7049
+ <line number="7" hits="12" branch="false"/>
7050
+ <line number="8" hits="12" branch="false"/>
7051
+ <line number="10" hits="12" branch="false"/>
7052
+ <line number="12" hits="12" branch="false"/>
7053
+ <line number="19" hits="12" branch="false"/>
5889
7054
  <line number="20" hits="0" branch="true" condition-coverage="0% (0/10)"/>
5890
7055
  <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"/>
7056
+ <line number="30" hits="12" branch="false"/>
7057
+ <line number="37" hits="12" branch="false"/>
7058
+ <line number="38" hits="0" branch="false"/>
7059
+ <line number="45" hits="12" branch="false"/>
7060
+ <line number="47" hits="0" branch="false"/>
5895
7061
  </lines>
5896
7062
  </class>
5897
7063
  <class name="classNames.ts" filename="src/utils/classNames.ts" line-rate="1" branch-rate="1">
@@ -5920,23 +7086,6 @@
5920
7086
  <line number="8" hits="1" branch="false"/>
5921
7087
  </lines>
5922
7088
  </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
7089
  <class name="environment.ts" filename="src/utils/environment.ts" line-rate="1" branch-rate="1">
5941
7090
  <methods>
5942
7091
  </methods>
@@ -5958,10 +7107,10 @@
5958
7107
  </method>
5959
7108
  </methods>
5960
7109
  <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"/>
7110
+ <line number="7" hits="12" branch="false"/>
7111
+ <line number="8" hits="12" branch="false"/>
7112
+ <line number="9" hits="12" branch="false"/>
7113
+ <line number="10" hits="12" branch="false"/>
5965
7114
  <line number="19" hits="0" branch="false"/>
5966
7115
  <line number="20" hits="0" branch="true" condition-coverage="0% (0/1)"/>
5967
7116
  <line number="21" hits="0" branch="false"/>
@@ -6050,9 +7199,9 @@
6050
7199
  <line number="103" hits="0"/>
6051
7200
  </lines>
6052
7201
  </method>
6053
- <method name="(anonymous_34)" hits="12" signature="()V">
7202
+ <method name="(anonymous_34)" hits="9" signature="()V">
6054
7203
  <lines>
6055
- <line number="105" hits="12"/>
7204
+ <line number="105" hits="9"/>
6056
7205
  </lines>
6057
7206
  </method>
6058
7207
  <method name="(anonymous_35)" hits="7" signature="()V">
@@ -6072,58 +7221,58 @@
6072
7221
  </method>
6073
7222
  </methods>
6074
7223
  <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"/>
7224
+ <line number="8" hits="11" branch="false"/>
7225
+ <line number="10" hits="11" branch="false"/>
7226
+ <line number="12" hits="11" branch="false"/>
7227
+ <line number="13" hits="11" branch="false"/>
7228
+ <line number="28" hits="11" branch="false"/>
7229
+ <line number="38" hits="11" branch="false"/>
6081
7230
  <line number="39" hits="0" branch="false"/>
6082
- <line number="40" hits="12" branch="false"/>
7231
+ <line number="40" hits="11" branch="false"/>
6083
7232
  <line number="41" hits="9" branch="false"/>
6084
- <line number="43" hits="12" branch="false"/>
7233
+ <line number="43" hits="11" branch="false"/>
6085
7234
  <line number="44" hits="0" branch="false"/>
6086
- <line number="45" hits="12" branch="false"/>
7235
+ <line number="45" hits="11" branch="false"/>
6087
7236
  <line number="46" hits="9" branch="false"/>
6088
- <line number="48" hits="12" branch="false"/>
7237
+ <line number="48" hits="11" branch="false"/>
6089
7238
  <line number="52" hits="0" branch="false"/>
6090
- <line number="56" hits="12" branch="false"/>
7239
+ <line number="56" hits="11" branch="false"/>
6091
7240
  <line number="59" hits="9" branch="false"/>
6092
7241
  <line number="60" hits="9" branch="false"/>
6093
7242
  <line number="63" hits="9" branch="false"/>
6094
- <line number="65" hits="12" branch="false"/>
7243
+ <line number="65" hits="11" branch="false"/>
6095
7244
  <line number="70" hits="0" branch="false"/>
6096
- <line number="74" hits="12" branch="false"/>
7245
+ <line number="74" hits="11" branch="false"/>
6097
7246
  <line number="78" hits="0" branch="false"/>
6098
7247
  <line number="81" hits="0" branch="false"/>
6099
- <line number="86" hits="12" branch="false"/>
7248
+ <line number="86" hits="11" branch="false"/>
6100
7249
  <line number="87" hits="0" branch="false"/>
6101
- <line number="88" hits="12" branch="false"/>
7250
+ <line number="88" hits="11" branch="false"/>
6102
7251
  <line number="89" hits="3" branch="false"/>
6103
- <line number="90" hits="12" branch="false"/>
7252
+ <line number="90" hits="11" branch="false"/>
6104
7253
  <line number="91" hits="0" branch="false"/>
6105
- <line number="93" hits="12" branch="false"/>
6106
- <line number="94" hits="12" branch="false"/>
7254
+ <line number="93" hits="11" branch="false"/>
7255
+ <line number="94" hits="11" branch="false"/>
6107
7256
  <line number="95" hits="0" branch="false"/>
6108
7257
  <line number="96" hits="0" branch="false"/>
6109
7258
  <line number="98" hits="0" branch="false"/>
6110
- <line number="100" hits="12" branch="false"/>
7259
+ <line number="100" hits="11" branch="false"/>
6111
7260
  <line number="101" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6112
- <line number="103" hits="12" branch="false"/>
7261
+ <line number="103" hits="11" branch="false"/>
6113
7262
  <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"/>
7263
+ <line number="105" hits="11" branch="false"/>
7264
+ <line number="106" hits="9" branch="false"/>
7265
+ <line number="116" hits="11" branch="false"/>
6117
7266
  <line number="123" hits="7" branch="true" condition-coverage="100% (1/1)"/>
6118
7267
  <line number="124" hits="3" branch="false"/>
6119
7268
  <line number="133" hits="7" branch="false"/>
6120
- <line number="138" hits="12" branch="false"/>
7269
+ <line number="138" hits="11" branch="false"/>
6121
7270
  <line number="139" hits="1" branch="false"/>
6122
- <line number="143" hits="12" branch="false"/>
7271
+ <line number="143" hits="11" branch="false"/>
6123
7272
  <line number="144" hits="1" branch="false"/>
6124
7273
  </lines>
6125
7274
  </class>
6126
- <class name="systemReport.ts" filename="src/utils/systemReport.ts" line-rate="0.4054" branch-rate="0">
7275
+ <class name="systemReport.ts" filename="src/utils/systemReport.ts" line-rate="0.37829999999999997" branch-rate="0">
6127
7276
  <methods>
6128
7277
  <method name="(anonymous_4)" hits="0" signature="()V">
6129
7278
  <lines>
@@ -6132,22 +7281,22 @@
6132
7281
  </method>
6133
7282
  <method name="(anonymous_7)" hits="0" signature="()V">
6134
7283
  <lines>
6135
- <line number="99" hits="0"/>
7284
+ <line number="93" hits="0"/>
6136
7285
  </lines>
6137
7286
  </method>
6138
7287
  <method name="(anonymous_8)" hits="0" signature="()V">
6139
7288
  <lines>
6140
- <line number="104" hits="0"/>
7289
+ <line number="98" hits="0"/>
6141
7290
  </lines>
6142
7291
  </method>
6143
7292
  <method name="(anonymous_9)" hits="0" signature="()V">
6144
7293
  <lines>
6145
- <line number="121" hits="0"/>
7294
+ <line number="115" hits="0"/>
6146
7295
  </lines>
6147
7296
  </method>
6148
7297
  <method name="(anonymous_10)" hits="0" signature="()V">
6149
7298
  <lines>
6150
- <line number="135" hits="0"/>
7299
+ <line number="129" hits="0"/>
6151
7300
  </lines>
6152
7301
  </method>
6153
7302
  </methods>
@@ -6156,10 +7305,9 @@
6156
7305
  <line number="8" hits="2" branch="false"/>
6157
7306
  <line number="9" hits="2" branch="false"/>
6158
7307
  <line number="10" hits="2" branch="false"/>
6159
- <line number="11" hits="2" branch="false"/>
7308
+ <line number="13" hits="2" branch="false"/>
6160
7309
  <line number="17" hits="2" branch="false"/>
6161
7310
  <line number="21" hits="2" branch="false"/>
6162
- <line number="22" hits="2" branch="false"/>
6163
7311
  <line number="23" hits="2" branch="false"/>
6164
7312
  <line number="24" hits="2" branch="false"/>
6165
7313
  <line number="25" hits="2" branch="false"/>
@@ -6167,28 +7315,29 @@
6167
7315
  <line number="29" hits="0" branch="false"/>
6168
7316
  <line number="45" hits="0" branch="false"/>
6169
7317
  <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"/>
7318
+ <line number="56" hits="0" branch="false"/>
7319
+ <line number="58" hits="0" branch="false"/>
7320
+ <line number="87" hits="0" branch="true" condition-coverage="0% (0/1)"/>
7321
+ <line number="91" hits="0" branch="false"/>
7322
+ <line number="93" hits="0" branch="true" condition-coverage="0% (0/4)"/>
7323
+ <line number="98" hits="2" branch="false"/>
7324
+ <line number="99" hits="0" branch="true" condition-coverage="0% (0/1)"/>
7325
+ <line number="100" hits="0" branch="false"/>
7326
+ <line number="103" hits="0" branch="false"/>
7327
+ <line number="105" hits="0" branch="false"/>
7328
+ <line number="115" hits="2" branch="false"/>
7329
+ <line number="121" hits="0" branch="false"/>
7330
+ <line number="129" hits="2" branch="false"/>
7331
+ <line number="134" hits="0" branch="false"/>
7332
+ <line number="135" hits="0" branch="false"/>
7333
+ <line number="136" hits="0" branch="false"/>
7334
+ <line number="143" hits="0" branch="false"/>
7335
+ <line number="144" hits="0" branch="false"/>
7336
+ <line number="146" hits="0" branch="false"/>
7337
+ <line number="147" hits="0" branch="false"/>
7338
+ <line number="148" hits="0" branch="false"/>
6185
7339
  <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"/>
7340
+ <line number="151" hits="0" branch="false"/>
6192
7341
  </lines>
6193
7342
  </class>
6194
7343
  <class name="truncateMiddle.ts" filename="src/utils/truncateMiddle.ts" line-rate="1" branch-rate="1">
@@ -6209,7 +7358,7 @@
6209
7358
  <line number="20" hits="5" branch="false"/>
6210
7359
  </lines>
6211
7360
  </class>
6212
- <class name="usageData.ts" filename="src/utils/usageData.ts" line-rate="0.38880000000000003" branch-rate="0.1304">
7361
+ <class name="usageData.ts" filename="src/utils/usageData.ts" line-rate="0.4" branch-rate="0.0909">
6213
7362
  <methods>
6214
7363
  <method name="(anonymous_11)" hits="3" signature="()V">
6215
7364
  <lines>
@@ -6266,10 +7415,14 @@
6266
7415
  <line number="176" hits="0"/>
6267
7416
  </lines>
6268
7417
  </method>
7418
+ <method name="(anonymous_22)" hits="1" signature="()V">
7419
+ <lines>
7420
+ <line number="188" hits="1"/>
7421
+ </lines>
7422
+ </method>
6269
7423
  </methods>
6270
7424
  <lines>
6271
7425
  <line number="7" hits="4" branch="false"/>
6272
- <line number="11" hits="4" branch="false"/>
6273
7426
  <line number="12" hits="4" branch="false"/>
6274
7427
  <line number="18" hits="4" branch="false"/>
6275
7428
  <line number="20" hits="4" branch="false"/>
@@ -6286,30 +7439,30 @@
6286
7439
  <line number="58" hits="0" branch="false"/>
6287
7440
  <line number="62" hits="0" branch="false"/>
6288
7441
  <line number="63" hits="0" branch="false"/>
6289
- <line number="70" hits="0" branch="false"/>
7442
+ <line number="70" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6290
7443
  <line number="75" hits="0" branch="false"/>
6291
7444
  <line number="77" hits="0" branch="false"/>
6292
7445
  <line number="78" hits="0" branch="false"/>
6293
7446
  <line number="87" hits="4" branch="false"/>
6294
- <line number="88" hits="3" branch="false"/>
7447
+ <line number="88" hits="3" branch="true" condition-coverage="75% (3/4)"/>
6295
7448
  <line number="93" hits="3" branch="false"/>
6296
7449
  <line number="101" hits="4" branch="false"/>
6297
7450
  <line number="102" hits="0" branch="false"/>
6298
- <line number="103" hits="0" branch="false"/>
7451
+ <line number="103" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6299
7452
  <line number="104" hits="0" branch="false"/>
6300
7453
  <line number="112" hits="4" branch="false"/>
6301
7454
  <line number="113" hits="0" branch="false"/>
6302
- <line number="114" hits="0" branch="false"/>
7455
+ <line number="114" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6303
7456
  <line number="122" hits="4" branch="false"/>
6304
7457
  <line number="123" hits="0" branch="false"/>
6305
- <line number="124" hits="0" branch="false"/>
7458
+ <line number="124" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6306
7459
  <line number="133" hits="4" branch="false"/>
6307
7460
  <line number="134" hits="0" branch="false"/>
6308
- <line number="135" hits="0" branch="false"/>
7461
+ <line number="135" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6309
7462
  <line number="144" hits="4" branch="false"/>
6310
7463
  <line number="145" hits="0" branch="false"/>
6311
7464
  <line number="147" hits="0" branch="true" condition-coverage="0% (0/3)"/>
6312
- <line number="148" hits="0" branch="false"/>
7465
+ <line number="148" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6313
7466
  <line number="149" hits="0" branch="false"/>
6314
7467
  <line number="162" hits="4" branch="false"/>
6315
7468
  <line number="163" hits="0" branch="false"/>
@@ -6318,10 +7471,12 @@
6318
7471
  <line number="167" hits="0" branch="false"/>
6319
7472
  <line number="168" hits="0" branch="false"/>
6320
7473
  <line number="176" hits="4" branch="false"/>
6321
- <line number="177" hits="0" branch="false"/>
7474
+ <line number="177" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6322
7475
  <line number="178" hits="0" branch="true" condition-coverage="0% (0/4)"/>
6323
7476
  <line number="181" hits="0" branch="false"/>
6324
- <line number="187" hits="4" branch="false"/>
7477
+ <line number="188" hits="4" branch="false"/>
7478
+ <line number="189" hits="1" branch="false"/>
7479
+ <line number="192" hits="4" branch="false"/>
6325
7480
  </lines>
6326
7481
  </class>
6327
7482
  <class name="useHotKey.ts" filename="src/utils/useHotKey.ts" line-rate="0.7916" branch-rate="0.6">