@nordicsemiconductor/pc-nrfconnect-shared 120.0.0 → 122.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.
- package/Changelog.md +48 -0
- package/coverage/cobertura-coverage.xml +1358 -1215
- package/nrfutil/device/__mocks__/device.ts +2 -0
- package/nrfutil/device/batch.ts +18 -2
- package/nrfutil/device/common.ts +17 -38
- package/nrfutil/device/device.ts +2 -0
- package/nrfutil/device/deviceInfo.ts +70 -0
- package/nrfutil/device/erase.ts +2 -2
- package/nrfutil/device/firmwareRead.ts +2 -2
- package/nrfutil/device/getCoreInfo.ts +2 -2
- package/nrfutil/device/getFwInfo.ts +2 -2
- package/nrfutil/device/getProtectionStatus.ts +2 -2
- package/nrfutil/device/list.ts +4 -30
- package/nrfutil/device/program.ts +4 -4
- package/nrfutil/device/recover.ts +2 -2
- package/nrfutil/device/reset.ts +2 -2
- package/nrfutil/device/setMcuState.ts +2 -5
- package/nrfutil/device/setProtectionStatus.ts +2 -2
- package/nrfutil/index.ts +1 -1
- package/nrfutil/moduleVersion.ts +20 -0
- package/nrfutil/sandboxTypes.ts +14 -0
- package/package.json +1 -1
- package/src/About/DeviceCard.tsx +6 -5
- package/src/About/SupportCard.tsx +2 -2
- package/src/App/shared.scss +0 -1
- package/src/Device/DeviceSelector/BasicDeviceInfo.tsx +12 -6
- package/src/Device/DeviceSelector/DeviceList/AnimatedList.tsx +1 -1
- package/src/Device/DeviceSelector/DeviceList/Device.tsx +7 -5
- package/src/Device/DeviceSelector/DeviceList/DeviceList.tsx +23 -5
- package/src/Device/DeviceSelector/DeviceList/EditDeviceButtons.tsx +7 -6
- package/src/Device/DeviceSelector/DeviceList/MoreDeviceInfo.tsx +26 -30
- package/src/Device/DeviceSelector/DeviceList/edit-device-buttons.scss +1 -2
- package/src/Device/DeviceSelector/DeviceSelector.test.tsx +26 -46
- package/src/Device/DeviceSelector/DeviceSelector.tsx +40 -15
- package/src/Device/DeviceSelector/Favorite.tsx +10 -10
- package/src/Device/DeviceSelector/basic-device-info.scss +0 -12
- package/src/Device/deviceInfo/deviceInfo.ts +2 -2
- package/src/Device/deviceLister.ts +59 -50
- package/src/Device/deviceSetup.ts +28 -10
- package/src/Device/deviceSlice.ts +148 -84
- package/src/Device/jprogOperations.ts +56 -27
- package/src/Device/sdfuOperations.ts +25 -31
- package/src/Dropdown/Dropdown.tsx +2 -2
- package/src/InlineInput/InlineInput.tsx +25 -3
- package/src/InlineInput/NumberInlineInput.tsx +24 -8
- package/src/InlineInput/NumberInputWithDropdown.tsx +131 -0
- package/src/index.ts +3 -0
- package/src/logging/sendInitialLogMessages.ts +13 -9
- package/src/utils/logLibVersions.ts +1 -1
- package/src/utils/systemReport.ts +3 -3
- package/typings/generated/nrfutil/device/__mocks__/device.d.ts +1 -0
- package/typings/generated/nrfutil/device/__mocks__/device.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/batch.d.ts +3 -2
- package/typings/generated/nrfutil/device/batch.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/common.d.ts +6 -33
- package/typings/generated/nrfutil/device/common.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/device.d.ts +13 -12
- package/typings/generated/nrfutil/device/device.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/deviceInfo.d.ts +40 -0
- package/typings/generated/nrfutil/device/deviceInfo.d.ts.map +1 -0
- package/typings/generated/nrfutil/device/erase.d.ts +2 -2
- package/typings/generated/nrfutil/device/erase.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/firmwareRead.d.ts +2 -2
- package/typings/generated/nrfutil/device/firmwareRead.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/getCoreInfo.d.ts +2 -2
- package/typings/generated/nrfutil/device/getCoreInfo.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/getFwInfo.d.ts +2 -2
- package/typings/generated/nrfutil/device/getFwInfo.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/getProtectionStatus.d.ts +2 -2
- package/typings/generated/nrfutil/device/getProtectionStatus.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/list.d.ts +3 -3
- package/typings/generated/nrfutil/device/list.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/program.d.ts +2 -2
- package/typings/generated/nrfutil/device/program.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/recover.d.ts +2 -2
- package/typings/generated/nrfutil/device/recover.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/reset.d.ts +2 -2
- package/typings/generated/nrfutil/device/reset.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/setMcuState.d.ts +2 -2
- package/typings/generated/nrfutil/device/setMcuState.d.ts.map +1 -1
- package/typings/generated/nrfutil/device/setProtectionStatus.d.ts +2 -2
- package/typings/generated/nrfutil/device/setProtectionStatus.d.ts.map +1 -1
- package/typings/generated/nrfutil/index.d.ts +2 -1
- package/typings/generated/nrfutil/index.d.ts.map +1 -1
- package/typings/generated/nrfutil/moduleVersion.d.ts +4 -0
- package/typings/generated/nrfutil/moduleVersion.d.ts.map +1 -1
- package/typings/generated/nrfutil/sandboxTypes.d.ts +9 -0
- package/typings/generated/nrfutil/sandboxTypes.d.ts.map +1 -1
- package/typings/generated/src/About/DeviceCard.d.ts.map +1 -1
- package/typings/generated/src/Device/DeviceSelector/BasicDeviceInfo.d.ts.map +1 -1
- package/typings/generated/src/Device/DeviceSelector/DeviceList/Device.d.ts +0 -1
- package/typings/generated/src/Device/DeviceSelector/DeviceList/Device.d.ts.map +1 -1
- package/typings/generated/src/Device/DeviceSelector/DeviceList/DeviceList.d.ts.map +1 -1
- package/typings/generated/src/Device/DeviceSelector/DeviceList/EditDeviceButtons.d.ts.map +1 -1
- package/typings/generated/src/Device/DeviceSelector/DeviceList/MoreDeviceInfo.d.ts +0 -1
- package/typings/generated/src/Device/DeviceSelector/DeviceList/MoreDeviceInfo.d.ts.map +1 -1
- package/typings/generated/src/Device/DeviceSelector/DeviceSelector.d.ts.map +1 -1
- package/typings/generated/src/Device/DeviceSelector/Favorite.d.ts +0 -1
- package/typings/generated/src/Device/DeviceSelector/Favorite.d.ts.map +1 -1
- package/typings/generated/src/Device/deviceLister.d.ts +1 -15
- package/typings/generated/src/Device/deviceLister.d.ts.map +1 -1
- package/typings/generated/src/Device/deviceSetup.d.ts +6 -5
- package/typings/generated/src/Device/deviceSetup.d.ts.map +1 -1
- package/typings/generated/src/Device/deviceSlice.d.ts +12 -15
- package/typings/generated/src/Device/deviceSlice.d.ts.map +1 -1
- package/typings/generated/src/Device/jprogOperations.d.ts.map +1 -1
- package/typings/generated/src/Device/sdfuOperations.d.ts.map +1 -1
- package/typings/generated/src/Dropdown/Dropdown.d.ts +2 -2
- package/typings/generated/src/Dropdown/Dropdown.d.ts.map +1 -1
- package/typings/generated/src/InlineInput/InlineInput.d.ts +3 -0
- package/typings/generated/src/InlineInput/InlineInput.d.ts.map +1 -1
- package/typings/generated/src/InlineInput/NumberInlineInput.d.ts +8 -4
- package/typings/generated/src/InlineInput/NumberInlineInput.d.ts.map +1 -1
- package/typings/generated/src/InlineInput/NumberInputWithDropdown.d.ts +19 -0
- package/typings/generated/src/InlineInput/NumberInputWithDropdown.d.ts.map +1 -0
- package/typings/generated/src/index.d.ts +3 -1
- package/typings/generated/src/index.d.ts.map +1 -1
- package/typings/generated/src/logging/sendInitialLogMessages.d.ts.map +1 -1
- package/typings/generated/src/utils/systemReport.d.ts +1 -1
- package/typings/generated/src/utils/systemReport.d.ts.map +1 -1
- package/src/Device/DeviceSelector/DeviceList/device.scss +0 -28
- package/src/Device/DeviceSelector/DeviceList/more-device-info.scss +0 -33
- package/src/Device/DeviceSelector/favorite.scss +0 -17
|
@@ -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="
|
|
3
|
+
<coverage lines-valid="3291" lines-covered="1819" line-rate="0.5527000000000001" branches-valid="1603" branches-covered="496" branch-rate="0.3094" timestamp="1698929913134" complexity="0" version="0.1">
|
|
4
4
|
<sources>
|
|
5
5
|
<source>/home/vsts/work/1/s</source>
|
|
6
6
|
</sources>
|
|
@@ -358,7 +358,7 @@
|
|
|
358
358
|
<methods>
|
|
359
359
|
</methods>
|
|
360
360
|
<lines>
|
|
361
|
-
<line number="13" hits="
|
|
361
|
+
<line number="13" hits="137" branch="false"/>
|
|
362
362
|
</lines>
|
|
363
363
|
</class>
|
|
364
364
|
<class name="packageJsonMock.ts" filename="mocks/packageJsonMock.ts" line-rate="1" branch-rate="1">
|
|
@@ -401,18 +401,22 @@
|
|
|
401
401
|
</class>
|
|
402
402
|
</classes>
|
|
403
403
|
</package>
|
|
404
|
-
<package name="nrfutil" line-rate="0.
|
|
404
|
+
<package name="nrfutil" line-rate="0.11470000000000001" branch-rate="0">
|
|
405
405
|
<classes>
|
|
406
|
-
<class name="
|
|
406
|
+
<class name="index.ts" filename="nrfutil/index.ts" line-rate="0.6666" branch-rate="1">
|
|
407
|
+
<methods>
|
|
408
|
+
</methods>
|
|
409
|
+
<lines>
|
|
410
|
+
<line number="7" hits="6" branch="false"/>
|
|
411
|
+
<line number="21" hits="1" branch="false"/>
|
|
412
|
+
<line number="22" hits="0" branch="false"/>
|
|
413
|
+
</lines>
|
|
414
|
+
</class>
|
|
415
|
+
<class name="moduleVersion.ts" filename="nrfutil/moduleVersion.ts" line-rate="0.3225" branch-rate="0">
|
|
407
416
|
<methods>
|
|
408
|
-
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
409
|
-
<lines>
|
|
410
|
-
<line number="16" hits="0"/>
|
|
411
|
-
</lines>
|
|
412
|
-
</method>
|
|
413
417
|
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
414
418
|
<lines>
|
|
415
|
-
<line number="
|
|
419
|
+
<line number="17" hits="0"/>
|
|
416
420
|
</lines>
|
|
417
421
|
</method>
|
|
418
422
|
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
@@ -422,63 +426,77 @@
|
|
|
422
426
|
</method>
|
|
423
427
|
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
424
428
|
<lines>
|
|
425
|
-
<line number="
|
|
429
|
+
<line number="36" hits="0"/>
|
|
426
430
|
</lines>
|
|
427
431
|
</method>
|
|
428
|
-
<method name="(
|
|
432
|
+
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
429
433
|
<lines>
|
|
430
|
-
<line number="
|
|
434
|
+
<line number="38" hits="0"/>
|
|
431
435
|
</lines>
|
|
432
436
|
</method>
|
|
433
437
|
<method name="(anonymous_11)" hits="0" signature="()V">
|
|
434
438
|
<lines>
|
|
435
|
-
<line number="
|
|
439
|
+
<line number="48" hits="0"/>
|
|
436
440
|
</lines>
|
|
437
441
|
</method>
|
|
438
442
|
<method name="(anonymous_12)" hits="0" signature="()V">
|
|
439
443
|
<lines>
|
|
440
|
-
<line number="
|
|
444
|
+
<line number="55" hits="0"/>
|
|
441
445
|
</lines>
|
|
442
446
|
</method>
|
|
443
|
-
<method name="(
|
|
447
|
+
<method name="(anonymous_13)" hits="0" signature="()V">
|
|
444
448
|
<lines>
|
|
445
449
|
<line number="74" hits="0"/>
|
|
446
450
|
</lines>
|
|
447
451
|
</method>
|
|
448
|
-
<method name="(
|
|
452
|
+
<method name="(anonymous_14)" hits="0" signature="()V">
|
|
449
453
|
<lines>
|
|
450
|
-
<line number="
|
|
454
|
+
<line number="80" hits="0"/>
|
|
455
|
+
</lines>
|
|
456
|
+
</method>
|
|
457
|
+
<method name="(anonymous_16)" hits="0" signature="()V">
|
|
458
|
+
<lines>
|
|
459
|
+
<line number="94" hits="0"/>
|
|
460
|
+
</lines>
|
|
461
|
+
</method>
|
|
462
|
+
<method name="(anonymous_17)" hits="0" signature="()V">
|
|
463
|
+
<lines>
|
|
464
|
+
<line number="98" hits="0"/>
|
|
451
465
|
</lines>
|
|
452
466
|
</method>
|
|
453
467
|
</methods>
|
|
454
468
|
<lines>
|
|
455
|
-
<line number="7" hits="
|
|
456
|
-
<line number="
|
|
457
|
-
<line number="
|
|
458
|
-
<line number="
|
|
459
|
-
<line number="
|
|
460
|
-
<line number="
|
|
461
|
-
<line number="
|
|
462
|
-
<line number="
|
|
463
|
-
<line number="
|
|
464
|
-
<line number="
|
|
465
|
-
<line number="
|
|
466
|
-
<line number="
|
|
467
|
-
<line number="
|
|
468
|
-
<line number="
|
|
469
|
-
<line number="
|
|
470
|
-
<line number="
|
|
471
|
-
<line number="
|
|
472
|
-
<line number="
|
|
473
|
-
<line number="
|
|
474
|
-
<line number="
|
|
475
|
-
<line number="
|
|
476
|
-
<line number="
|
|
477
|
-
<line number="
|
|
478
|
-
<line number="
|
|
479
|
-
<line number="
|
|
480
|
-
<line number="
|
|
481
|
-
<line number="
|
|
469
|
+
<line number="7" hits="4" branch="false"/>
|
|
470
|
+
<line number="15" hits="4" branch="false"/>
|
|
471
|
+
<line number="17" hits="4" branch="false"/>
|
|
472
|
+
<line number="18" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
473
|
+
<line number="19" hits="0" branch="false"/>
|
|
474
|
+
<line number="22" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
475
|
+
<line number="23" hits="0" branch="false"/>
|
|
476
|
+
<line number="26" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
477
|
+
<line number="27" hits="0" branch="false"/>
|
|
478
|
+
<line number="30" hits="0" branch="false"/>
|
|
479
|
+
<line number="35" hits="4" branch="false"/>
|
|
480
|
+
<line number="36" hits="0" branch="false"/>
|
|
481
|
+
<line number="38" hits="4" branch="false"/>
|
|
482
|
+
<line number="42" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
483
|
+
<line number="45" hits="0" branch="false"/>
|
|
484
|
+
<line number="48" hits="0" branch="false"/>
|
|
485
|
+
<line number="55" hits="4" branch="false"/>
|
|
486
|
+
<line number="56" hits="0" branch="false"/>
|
|
487
|
+
<line number="61" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
488
|
+
<line number="68" hits="0" branch="false"/>
|
|
489
|
+
<line number="74" hits="4" branch="false"/>
|
|
490
|
+
<line number="78" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
491
|
+
<line number="80" hits="4" branch="false"/>
|
|
492
|
+
<line number="81" hits="0" branch="false"/>
|
|
493
|
+
<line number="82" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
494
|
+
<line number="87" hits="0" branch="false"/>
|
|
495
|
+
<line number="92" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
496
|
+
<line number="94" hits="4" branch="false"/>
|
|
497
|
+
<line number="95" hits="0" branch="false"/>
|
|
498
|
+
<line number="98" hits="4" branch="false"/>
|
|
499
|
+
<line number="99" hits="0" branch="true" condition-coverage="0% (0/12)"/>
|
|
482
500
|
</lines>
|
|
483
501
|
</class>
|
|
484
502
|
<class name="nrfutilLogger.ts" filename="nrfutil/nrfutilLogger.ts" line-rate="1" branch-rate="1">
|
|
@@ -495,9 +513,9 @@
|
|
|
495
513
|
</method>
|
|
496
514
|
</methods>
|
|
497
515
|
<lines>
|
|
498
|
-
<line number="11" hits="
|
|
516
|
+
<line number="11" hits="4" branch="false"/>
|
|
499
517
|
<line number="12" hits="1" branch="false"/>
|
|
500
|
-
<line number="15" hits="
|
|
518
|
+
<line number="15" hits="4" branch="false"/>
|
|
501
519
|
</lines>
|
|
502
520
|
</class>
|
|
503
521
|
<class name="sandbox.ts" filename="nrfutil/sandbox.ts" line-rate="0.061200000000000004" branch-rate="0">
|
|
@@ -739,21 +757,21 @@
|
|
|
739
757
|
</method>
|
|
740
758
|
</methods>
|
|
741
759
|
<lines>
|
|
742
|
-
<line number="7" hits="
|
|
743
|
-
<line number="8" hits="
|
|
744
|
-
<line number="9" hits="
|
|
745
|
-
<line number="10" hits="
|
|
746
|
-
<line number="12" hits="
|
|
747
|
-
<line number="13" hits="
|
|
748
|
-
<line number="14" hits="
|
|
749
|
-
<line number="28" hits="
|
|
760
|
+
<line number="7" hits="4" branch="false"/>
|
|
761
|
+
<line number="8" hits="4" branch="false"/>
|
|
762
|
+
<line number="9" hits="4" branch="false"/>
|
|
763
|
+
<line number="10" hits="4" branch="false"/>
|
|
764
|
+
<line number="12" hits="4" branch="false"/>
|
|
765
|
+
<line number="13" hits="4" branch="false"/>
|
|
766
|
+
<line number="14" hits="4" branch="false"/>
|
|
767
|
+
<line number="28" hits="4" branch="false"/>
|
|
750
768
|
<line number="29" hits="0" branch="false"/>
|
|
751
769
|
<line number="30" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
752
770
|
<line number="31" hits="0" branch="false"/>
|
|
753
771
|
<line number="33" hits="0" branch="false"/>
|
|
754
772
|
<line number="34" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
755
773
|
<line number="36" hits="0" branch="false"/>
|
|
756
|
-
<line number="40" hits="
|
|
774
|
+
<line number="40" hits="4" branch="false"/>
|
|
757
775
|
<line number="41" hits="0" branch="false"/>
|
|
758
776
|
<line number="42" hits="0" branch="false"/>
|
|
759
777
|
<line number="43" hits="0" branch="false"/>
|
|
@@ -767,7 +785,7 @@
|
|
|
767
785
|
<line number="56" hits="0" branch="false"/>
|
|
768
786
|
<line number="57" hits="0" branch="false"/>
|
|
769
787
|
<line number="60" hits="0" branch="false"/>
|
|
770
|
-
<line number="63" hits="
|
|
788
|
+
<line number="63" hits="4" branch="false"/>
|
|
771
789
|
<line number="74" hits="0" branch="false"/>
|
|
772
790
|
<line number="76" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
773
791
|
<line number="77" hits="0" branch="false"/>
|
|
@@ -921,7 +939,7 @@
|
|
|
921
939
|
<line number="478" hits="0" branch="false"/>
|
|
922
940
|
<line number="484" hits="0" branch="false"/>
|
|
923
941
|
<line number="485" hits="0" branch="false"/>
|
|
924
|
-
<line number="489" hits="
|
|
942
|
+
<line number="489" hits="4" branch="false"/>
|
|
925
943
|
<line number="495" hits="0" branch="false"/>
|
|
926
944
|
<line number="501" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
927
945
|
<line number="502" hits="0" branch="false"/>
|
|
@@ -929,7 +947,7 @@
|
|
|
929
947
|
<line number="505" hits="0" branch="false"/>
|
|
930
948
|
<line number="508" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
931
949
|
<line number="509" hits="0" branch="false"/>
|
|
932
|
-
<line number="512" hits="
|
|
950
|
+
<line number="512" hits="4" branch="false"/>
|
|
933
951
|
<line number="513" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
934
952
|
<line number="514" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
935
953
|
<line number="516" hits="0" branch="false"/>
|
|
@@ -937,23 +955,33 @@
|
|
|
937
955
|
<line number="522" hits="0" branch="false"/>
|
|
938
956
|
</lines>
|
|
939
957
|
</class>
|
|
940
|
-
<class name="sandboxTypes.ts" filename="nrfutil/sandboxTypes.ts" line-rate="0" branch-rate="0">
|
|
958
|
+
<class name="sandboxTypes.ts" filename="nrfutil/sandboxTypes.ts" line-rate="0.0909" branch-rate="0">
|
|
941
959
|
<methods>
|
|
960
|
+
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
961
|
+
<lines>
|
|
962
|
+
<line number="201" hits="0"/>
|
|
963
|
+
</lines>
|
|
964
|
+
</method>
|
|
942
965
|
</methods>
|
|
943
966
|
<lines>
|
|
944
|
-
<line number="181" hits="0" branch="false"/>
|
|
945
|
-
<line number="184" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
946
967
|
<line number="186" hits="0" branch="false"/>
|
|
947
968
|
<line number="189" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
948
969
|
<line number="191" hits="0" branch="false"/>
|
|
949
970
|
<line number="194" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
971
|
+
<line number="196" hits="0" branch="false"/>
|
|
972
|
+
<line number="199" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
973
|
+
<line number="201" hits="4" branch="false"/>
|
|
974
|
+
<line number="202" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
975
|
+
<line number="203" hits="0" branch="false"/>
|
|
976
|
+
<line number="206" hits="0" branch="false"/>
|
|
977
|
+
<line number="207" hits="0" branch="false"/>
|
|
950
978
|
</lines>
|
|
951
979
|
</class>
|
|
952
980
|
</classes>
|
|
953
981
|
</package>
|
|
954
|
-
<package name="nrfutil.device" line-rate="0.
|
|
982
|
+
<package name="nrfutil.device" line-rate="0.2473" branch-rate="0">
|
|
955
983
|
<classes>
|
|
956
|
-
<class name="batch.ts" filename="nrfutil/device/batch.ts" line-rate="0.
|
|
984
|
+
<class name="batch.ts" filename="nrfutil/device/batch.ts" line-rate="0.0681" branch-rate="0">
|
|
957
985
|
<methods>
|
|
958
986
|
<method name="(anonymous_3)" hits="0" signature="()V">
|
|
959
987
|
<lines>
|
|
@@ -977,17 +1005,17 @@
|
|
|
977
1005
|
</method>
|
|
978
1006
|
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
979
1007
|
<lines>
|
|
980
|
-
<line number="
|
|
1008
|
+
<line number="98" hits="0"/>
|
|
981
1009
|
</lines>
|
|
982
1010
|
</method>
|
|
983
1011
|
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
984
1012
|
<lines>
|
|
985
|
-
<line number="
|
|
1013
|
+
<line number="101" hits="0"/>
|
|
986
1014
|
</lines>
|
|
987
1015
|
</method>
|
|
988
1016
|
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
989
1017
|
<lines>
|
|
990
|
-
<line number="
|
|
1018
|
+
<line number="116" hits="0"/>
|
|
991
1019
|
</lines>
|
|
992
1020
|
</method>
|
|
993
1021
|
<method name="(anonymous_10)" hits="0" signature="()V">
|
|
@@ -997,22 +1025,22 @@
|
|
|
997
1025
|
</method>
|
|
998
1026
|
<method name="(anonymous_11)" hits="0" signature="()V">
|
|
999
1027
|
<lines>
|
|
1000
|
-
<line number="
|
|
1028
|
+
<line number="139" hits="0"/>
|
|
1001
1029
|
</lines>
|
|
1002
1030
|
</method>
|
|
1003
1031
|
<method name="(anonymous_12)" hits="0" signature="()V">
|
|
1004
1032
|
<lines>
|
|
1005
|
-
<line number="
|
|
1033
|
+
<line number="152" hits="0"/>
|
|
1006
1034
|
</lines>
|
|
1007
1035
|
</method>
|
|
1008
1036
|
<method name="(anonymous_13)" hits="0" signature="()V">
|
|
1009
1037
|
<lines>
|
|
1010
|
-
<line number="
|
|
1038
|
+
<line number="168" hits="0"/>
|
|
1011
1039
|
</lines>
|
|
1012
1040
|
</method>
|
|
1013
1041
|
<method name="(anonymous_14)" hits="0" signature="()V">
|
|
1014
1042
|
<lines>
|
|
1015
|
-
<line number="
|
|
1043
|
+
<line number="186" hits="0"/>
|
|
1016
1044
|
</lines>
|
|
1017
1045
|
</method>
|
|
1018
1046
|
<method name="(anonymous_15)" hits="0" signature="()V">
|
|
@@ -1022,22 +1050,22 @@
|
|
|
1022
1050
|
</method>
|
|
1023
1051
|
<method name="(anonymous_16)" hits="0" signature="()V">
|
|
1024
1052
|
<lines>
|
|
1025
|
-
<line number="
|
|
1053
|
+
<line number="213" hits="0"/>
|
|
1026
1054
|
</lines>
|
|
1027
1055
|
</method>
|
|
1028
1056
|
<method name="(anonymous_17)" hits="0" signature="()V">
|
|
1029
1057
|
<lines>
|
|
1030
|
-
<line number="
|
|
1058
|
+
<line number="224" hits="0"/>
|
|
1031
1059
|
</lines>
|
|
1032
1060
|
</method>
|
|
1033
1061
|
<method name="(anonymous_18)" hits="0" signature="()V">
|
|
1034
1062
|
<lines>
|
|
1035
|
-
<line number="
|
|
1063
|
+
<line number="237" hits="0"/>
|
|
1036
1064
|
</lines>
|
|
1037
1065
|
</method>
|
|
1038
1066
|
<method name="(anonymous_19)" hits="0" signature="()V">
|
|
1039
1067
|
<lines>
|
|
1040
|
-
<line number="
|
|
1068
|
+
<line number="256" hits="0"/>
|
|
1041
1069
|
</lines>
|
|
1042
1070
|
</method>
|
|
1043
1071
|
<method name="(anonymous_20)" hits="0" signature="()V">
|
|
@@ -1047,37 +1075,42 @@
|
|
|
1047
1075
|
</method>
|
|
1048
1076
|
<method name="(anonymous_21)" hits="0" signature="()V">
|
|
1049
1077
|
<lines>
|
|
1050
|
-
<line number="
|
|
1078
|
+
<line number="280" hits="0"/>
|
|
1051
1079
|
</lines>
|
|
1052
1080
|
</method>
|
|
1053
1081
|
<method name="(anonymous_22)" hits="0" signature="()V">
|
|
1054
1082
|
<lines>
|
|
1055
|
-
<line number="
|
|
1083
|
+
<line number="288" hits="0"/>
|
|
1056
1084
|
</lines>
|
|
1057
1085
|
</method>
|
|
1058
1086
|
<method name="(anonymous_23)" hits="0" signature="()V">
|
|
1059
1087
|
<lines>
|
|
1060
|
-
<line number="
|
|
1088
|
+
<line number="294" hits="0"/>
|
|
1061
1089
|
</lines>
|
|
1062
1090
|
</method>
|
|
1063
1091
|
<method name="(anonymous_24)" hits="0" signature="()V">
|
|
1064
1092
|
<lines>
|
|
1065
|
-
<line number="
|
|
1093
|
+
<line number="301" hits="0"/>
|
|
1066
1094
|
</lines>
|
|
1067
1095
|
</method>
|
|
1068
1096
|
<method name="(anonymous_25)" hits="0" signature="()V">
|
|
1069
1097
|
<lines>
|
|
1070
|
-
<line number="
|
|
1098
|
+
<line number="304" hits="0"/>
|
|
1071
1099
|
</lines>
|
|
1072
1100
|
</method>
|
|
1073
1101
|
<method name="(anonymous_26)" hits="0" signature="()V">
|
|
1074
1102
|
<lines>
|
|
1075
|
-
<line number="
|
|
1103
|
+
<line number="318" hits="0"/>
|
|
1076
1104
|
</lines>
|
|
1077
1105
|
</method>
|
|
1078
1106
|
<method name="(anonymous_27)" hits="0" signature="()V">
|
|
1079
1107
|
<lines>
|
|
1080
|
-
<line number="
|
|
1108
|
+
<line number="322" hits="0"/>
|
|
1109
|
+
</lines>
|
|
1110
|
+
</method>
|
|
1111
|
+
<method name="(anonymous_28)" hits="0" signature="()V">
|
|
1112
|
+
<lines>
|
|
1113
|
+
<line number="339" hits="0"/>
|
|
1081
1114
|
</lines>
|
|
1082
1115
|
</method>
|
|
1083
1116
|
</methods>
|
|
@@ -1099,76 +1132,80 @@
|
|
|
1099
1132
|
<line number="79" hits="0" branch="false"/>
|
|
1100
1133
|
<line number="85" hits="0" branch="false"/>
|
|
1101
1134
|
<line number="89" hits="0" branch="false"/>
|
|
1102
|
-
<line number="
|
|
1103
|
-
<line number="
|
|
1104
|
-
<line number="
|
|
1105
|
-
<line number="103" hits="0" branch="
|
|
1106
|
-
<line number="
|
|
1107
|
-
<line number="
|
|
1135
|
+
<line number="95" hits="0" branch="false"/>
|
|
1136
|
+
<line number="99" hits="0" branch="false"/>
|
|
1137
|
+
<line number="102" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1138
|
+
<line number="103" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
1139
|
+
<line number="108" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
1140
|
+
<line number="113" hits="0" branch="false"/>
|
|
1108
1141
|
<line number="120" hits="0" branch="false"/>
|
|
1109
1142
|
<line number="126" hits="0" branch="false"/>
|
|
1110
|
-
<line number="
|
|
1111
|
-
<line number="
|
|
1143
|
+
<line number="130" hits="0" branch="false"/>
|
|
1144
|
+
<line number="136" hits="0" branch="false"/>
|
|
1145
|
+
<line number="143" hits="0" branch="false"/>
|
|
1112
1146
|
<line number="149" hits="0" branch="false"/>
|
|
1113
|
-
<line number="
|
|
1114
|
-
<line number="
|
|
1115
|
-
<line number="
|
|
1116
|
-
<line number="
|
|
1117
|
-
<line number="
|
|
1118
|
-
<line number="
|
|
1119
|
-
<line number="167" hits="0" branch="false"/>
|
|
1120
|
-
<line number="169" hits="0" branch="false"/>
|
|
1147
|
+
<line number="159" hits="0" branch="false"/>
|
|
1148
|
+
<line number="163" hits="0" branch="false"/>
|
|
1149
|
+
<line number="165" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
1150
|
+
<line number="166" hits="0" branch="false"/>
|
|
1151
|
+
<line number="168" hits="0" branch="false"/>
|
|
1152
|
+
<line number="170" hits="0" branch="false"/>
|
|
1121
1153
|
<line number="171" hits="0" branch="false"/>
|
|
1122
|
-
<line number="172" hits="0" branch="false"/>
|
|
1123
|
-
<line number="174" hits="0" branch="false"/>
|
|
1124
1154
|
<line number="177" hits="0" branch="false"/>
|
|
1125
|
-
<line number="
|
|
1126
|
-
<line number="
|
|
1127
|
-
<line number="
|
|
1128
|
-
<line number="
|
|
1155
|
+
<line number="179" hits="0" branch="false"/>
|
|
1156
|
+
<line number="181" hits="0" branch="false"/>
|
|
1157
|
+
<line number="182" hits="0" branch="false"/>
|
|
1158
|
+
<line number="184" hits="0" branch="false"/>
|
|
1159
|
+
<line number="187" hits="0" branch="false"/>
|
|
1160
|
+
<line number="188" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
1161
|
+
<line number="193" hits="0" branch="false"/>
|
|
1129
1162
|
<line number="200" hits="0" branch="false"/>
|
|
1130
1163
|
<line number="204" hits="0" branch="false"/>
|
|
1131
|
-
<line number="
|
|
1132
|
-
<line number="
|
|
1133
|
-
<line number="
|
|
1134
|
-
<line number="
|
|
1135
|
-
<line number="232" hits="0" branch="false"/>
|
|
1136
|
-
<line number="233" hits="0" branch="false"/>
|
|
1164
|
+
<line number="210" hits="0" branch="false"/>
|
|
1165
|
+
<line number="214" hits="0" branch="false"/>
|
|
1166
|
+
<line number="221" hits="0" branch="false"/>
|
|
1167
|
+
<line number="228" hits="0" branch="false"/>
|
|
1137
1168
|
<line number="234" hits="0" branch="false"/>
|
|
1138
|
-
<line number="237" hits="0" branch="false"/>
|
|
1139
|
-
<line number="240" hits="0" branch="false"/>
|
|
1140
1169
|
<line number="241" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1141
1170
|
<line number="242" hits="0" branch="false"/>
|
|
1142
|
-
<line number="244" hits="0" branch="false"/>
|
|
1143
1171
|
<line number="247" hits="0" branch="false"/>
|
|
1144
1172
|
<line number="248" hits="0" branch="false"/>
|
|
1145
|
-
<line number="
|
|
1146
|
-
<line number="
|
|
1173
|
+
<line number="249" hits="0" branch="false"/>
|
|
1174
|
+
<line number="250" hits="0" branch="false"/>
|
|
1175
|
+
<line number="253" hits="0" branch="false"/>
|
|
1147
1176
|
<line number="256" hits="0" branch="false"/>
|
|
1148
|
-
<line number="
|
|
1149
|
-
<line number="
|
|
1150
|
-
<line number="
|
|
1151
|
-
<line number="
|
|
1152
|
-
<line number="
|
|
1153
|
-
<line number="
|
|
1154
|
-
<line number="
|
|
1155
|
-
<line number="
|
|
1177
|
+
<line number="257" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1178
|
+
<line number="258" hits="0" branch="false"/>
|
|
1179
|
+
<line number="260" hits="0" branch="false"/>
|
|
1180
|
+
<line number="263" hits="0" branch="false"/>
|
|
1181
|
+
<line number="264" hits="0" branch="false"/>
|
|
1182
|
+
<line number="270" hits="0" branch="false"/>
|
|
1183
|
+
<line number="271" hits="0" branch="false"/>
|
|
1184
|
+
<line number="272" hits="0" branch="false"/>
|
|
1185
|
+
<line number="281" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
1186
|
+
<line number="282" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1156
1187
|
<line number="289" hits="0" branch="false"/>
|
|
1157
|
-
<line number="
|
|
1188
|
+
<line number="290" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1189
|
+
<line number="295" hits="0" branch="false"/>
|
|
1190
|
+
<line number="297" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1191
|
+
<line number="299" hits="0" branch="false"/>
|
|
1158
1192
|
<line number="302" hits="0" branch="false"/>
|
|
1159
|
-
<line number="
|
|
1160
|
-
<line number="
|
|
1161
|
-
<line number="
|
|
1162
|
-
<line number="
|
|
1163
|
-
<line number="310" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1164
|
-
<line number="312" hits="0" branch="false"/>
|
|
1165
|
-
<line number="315" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1166
|
-
<line number="316" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
1193
|
+
<line number="305" hits="0" branch="false"/>
|
|
1194
|
+
<line number="313" hits="0" branch="false"/>
|
|
1195
|
+
<line number="318" hits="0" branch="false"/>
|
|
1196
|
+
<line number="319" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1167
1197
|
<line number="320" hits="0" branch="false"/>
|
|
1168
|
-
<line number="
|
|
1198
|
+
<line number="322" hits="0" branch="false"/>
|
|
1199
|
+
<line number="325" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1200
|
+
<line number="326" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1201
|
+
<line number="328" hits="0" branch="false"/>
|
|
1202
|
+
<line number="331" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1203
|
+
<line number="332" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
1204
|
+
<line number="336" hits="0" branch="false"/>
|
|
1205
|
+
<line number="339" hits="0" branch="false"/>
|
|
1169
1206
|
</lines>
|
|
1170
1207
|
</class>
|
|
1171
|
-
<class name="common.ts" filename="nrfutil/device/common.ts" line-rate="0.
|
|
1208
|
+
<class name="common.ts" filename="nrfutil/device/common.ts" line-rate="0.16" branch-rate="0">
|
|
1172
1209
|
<methods>
|
|
1173
1210
|
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
1174
1211
|
<lines>
|
|
@@ -1187,22 +1224,22 @@
|
|
|
1187
1224
|
</method>
|
|
1188
1225
|
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
1189
1226
|
<lines>
|
|
1190
|
-
<line number="
|
|
1227
|
+
<line number="161" hits="0"/>
|
|
1191
1228
|
</lines>
|
|
1192
1229
|
</method>
|
|
1193
1230
|
<method name="(anonymous_10)" hits="0" signature="()V">
|
|
1194
1231
|
<lines>
|
|
1195
|
-
<line number="
|
|
1232
|
+
<line number="175" hits="0"/>
|
|
1196
1233
|
</lines>
|
|
1197
1234
|
</method>
|
|
1198
1235
|
<method name="(anonymous_11)" hits="0" signature="()V">
|
|
1199
1236
|
<lines>
|
|
1200
|
-
<line number="
|
|
1237
|
+
<line number="216" hits="0"/>
|
|
1201
1238
|
</lines>
|
|
1202
1239
|
</method>
|
|
1203
1240
|
<method name="(anonymous_12)" hits="0" signature="()V">
|
|
1204
1241
|
<lines>
|
|
1205
|
-
<line number="
|
|
1242
|
+
<line number="237" hits="0"/>
|
|
1206
1243
|
</lines>
|
|
1207
1244
|
</method>
|
|
1208
1245
|
</methods>
|
|
@@ -1220,66 +1257,70 @@
|
|
|
1220
1257
|
<line number="24" hits="0" branch="false"/>
|
|
1221
1258
|
<line number="25" hits="0" branch="false"/>
|
|
1222
1259
|
<line number="28" hits="0" branch="false"/>
|
|
1223
|
-
<line number="
|
|
1224
|
-
<line number="
|
|
1260
|
+
<line number="161" hits="3" branch="false"/>
|
|
1261
|
+
<line number="162" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1262
|
+
<line number="163" hits="0" branch="false"/>
|
|
1263
|
+
<line number="166" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1264
|
+
<line number="167" hits="0" branch="false"/>
|
|
1265
|
+
<line number="173" hits="0" branch="false"/>
|
|
1266
|
+
<line number="175" hits="0" branch="false"/>
|
|
1267
|
+
<line number="176" hits="0" branch="false"/>
|
|
1268
|
+
<line number="177" hits="0" branch="true" condition-coverage="0% (0/8)"/>
|
|
1269
|
+
<line number="179" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1270
|
+
<line number="180" hits="0" branch="false"/>
|
|
1271
|
+
<line number="182" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1272
|
+
<line number="183" hits="0" branch="false"/>
|
|
1273
|
+
<line number="185" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1274
|
+
<line number="186" hits="0" branch="false"/>
|
|
1275
|
+
<line number="188" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1276
|
+
<line number="189" hits="0" branch="false"/>
|
|
1277
|
+
<line number="191" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1278
|
+
<line number="192" hits="0" branch="false"/>
|
|
1279
|
+
<line number="194" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1225
1280
|
<line number="195" hits="0" branch="false"/>
|
|
1226
|
-
<line number="198" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1227
1281
|
<line number="199" hits="0" branch="false"/>
|
|
1282
|
+
<line number="204" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
1228
1283
|
<line number="205" hits="0" branch="false"/>
|
|
1229
|
-
<line number="
|
|
1230
|
-
<line number="208" hits="0" branch="false"/>
|
|
1231
|
-
<line number="209" hits="0" branch="true" condition-coverage="0% (0/8)"/>
|
|
1232
|
-
<line number="211" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1284
|
+
<line number="209" hits="0" branch="false"/>
|
|
1233
1285
|
<line number="212" hits="0" branch="false"/>
|
|
1234
|
-
<line number="
|
|
1235
|
-
<line number="
|
|
1236
|
-
<line number="
|
|
1237
|
-
<line number="218" hits="0" branch="false"/>
|
|
1238
|
-
<line number="220" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1239
|
-
<line number="221" hits="0" branch="false"/>
|
|
1240
|
-
<line number="223" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1286
|
+
<line number="213" hits="0" branch="false"/>
|
|
1287
|
+
<line number="216" hits="3" branch="false"/>
|
|
1288
|
+
<line number="223" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1241
1289
|
<line number="224" hits="0" branch="false"/>
|
|
1242
|
-
<line number="
|
|
1243
|
-
<line number="
|
|
1244
|
-
<line number="
|
|
1245
|
-
<line number="
|
|
1246
|
-
<line number="237" hits="0" branch="false"/>
|
|
1247
|
-
<line number="241" hits="0" branch="false"/>
|
|
1248
|
-
<line number="244" hits="0" branch="false"/>
|
|
1290
|
+
<line number="228" hits="0" branch="false"/>
|
|
1291
|
+
<line number="229" hits="0" branch="false"/>
|
|
1292
|
+
<line number="237" hits="3" branch="false"/>
|
|
1293
|
+
<line number="244" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1249
1294
|
<line number="245" hits="0" branch="false"/>
|
|
1250
|
-
<line number="
|
|
1251
|
-
<line number="
|
|
1252
|
-
<line number="256" hits="0" branch="false"/>
|
|
1253
|
-
<line number="264" hits="3" branch="false"/>
|
|
1254
|
-
<line number="271" hits="0" branch="false"/>
|
|
1255
|
-
<line number="272" hits="0" branch="false"/>
|
|
1295
|
+
<line number="250" hits="0" branch="false"/>
|
|
1296
|
+
<line number="251" hits="0" branch="false"/>
|
|
1256
1297
|
</lines>
|
|
1257
1298
|
</class>
|
|
1258
|
-
<class name="device.ts" filename="nrfutil/device/device.ts" line-rate="0.
|
|
1299
|
+
<class name="device.ts" filename="nrfutil/device/device.ts" line-rate="0.6551" branch-rate="0">
|
|
1259
1300
|
<methods>
|
|
1260
1301
|
<method name="(anonymous_2)" hits="0" signature="()V">
|
|
1261
1302
|
<lines>
|
|
1262
|
-
<line number="
|
|
1303
|
+
<line number="23" hits="0"/>
|
|
1263
1304
|
</lines>
|
|
1264
1305
|
</method>
|
|
1265
1306
|
<method name="(anonymous_3)" hits="0" signature="()V">
|
|
1266
1307
|
<lines>
|
|
1267
|
-
<line number="
|
|
1308
|
+
<line number="28" hits="0"/>
|
|
1268
1309
|
</lines>
|
|
1269
1310
|
</method>
|
|
1270
1311
|
<method name="(anonymous_4)" hits="0" signature="()V">
|
|
1271
1312
|
<lines>
|
|
1272
|
-
<line number="
|
|
1313
|
+
<line number="33" hits="0"/>
|
|
1273
1314
|
</lines>
|
|
1274
1315
|
</method>
|
|
1275
1316
|
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
1276
1317
|
<lines>
|
|
1277
|
-
<line number="
|
|
1318
|
+
<line number="40" hits="0"/>
|
|
1278
1319
|
</lines>
|
|
1279
1320
|
</method>
|
|
1280
1321
|
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
1281
1322
|
<lines>
|
|
1282
|
-
<line number="
|
|
1323
|
+
<line number="62" hits="0"/>
|
|
1283
1324
|
</lines>
|
|
1284
1325
|
</method>
|
|
1285
1326
|
</methods>
|
|
@@ -1297,28 +1338,43 @@
|
|
|
1297
1338
|
<line number="18" hits="3" branch="false"/>
|
|
1298
1339
|
<line number="19" hits="3" branch="false"/>
|
|
1299
1340
|
<line number="20" hits="3" branch="false"/>
|
|
1300
|
-
<line number="
|
|
1301
|
-
<line number="23" hits="
|
|
1341
|
+
<line number="21" hits="3" branch="false"/>
|
|
1342
|
+
<line number="23" hits="3" branch="false"/>
|
|
1302
1343
|
<line number="24" hits="0" branch="false"/>
|
|
1303
|
-
<line number="
|
|
1304
|
-
<line number="28" hits="
|
|
1344
|
+
<line number="25" hits="0" branch="false"/>
|
|
1345
|
+
<line number="28" hits="3" branch="false"/>
|
|
1305
1346
|
<line number="29" hits="0" branch="false"/>
|
|
1306
|
-
<line number="
|
|
1307
|
-
<line number="33" hits="
|
|
1308
|
-
<line number="
|
|
1309
|
-
<line number="
|
|
1310
|
-
<line number="
|
|
1311
|
-
<line number="40" hits="
|
|
1347
|
+
<line number="30" hits="0" branch="false"/>
|
|
1348
|
+
<line number="33" hits="3" branch="false"/>
|
|
1349
|
+
<line number="34" hits="0" branch="false"/>
|
|
1350
|
+
<line number="36" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
1351
|
+
<line number="38" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
1352
|
+
<line number="40" hits="3" branch="false"/>
|
|
1312
1353
|
<line number="41" hits="0" branch="false"/>
|
|
1313
|
-
<line number="
|
|
1314
|
-
<line number="
|
|
1354
|
+
<line number="42" hits="0" branch="false"/>
|
|
1355
|
+
<line number="45" hits="3" branch="false"/>
|
|
1356
|
+
<line number="62" hits="0" branch="false"/>
|
|
1315
1357
|
</lines>
|
|
1316
1358
|
</class>
|
|
1317
|
-
<class name="
|
|
1359
|
+
<class name="deviceInfo.ts" filename="nrfutil/device/deviceInfo.ts" line-rate="0.6666" branch-rate="0">
|
|
1318
1360
|
<methods>
|
|
1319
1361
|
<method name="(anonymous_1)" hits="0" signature="()V">
|
|
1320
1362
|
<lines>
|
|
1321
|
-
<line number="
|
|
1363
|
+
<line number="54" hits="0"/>
|
|
1364
|
+
</lines>
|
|
1365
|
+
</method>
|
|
1366
|
+
</methods>
|
|
1367
|
+
<lines>
|
|
1368
|
+
<line number="12" hits="3" branch="false"/>
|
|
1369
|
+
<line number="54" hits="3" branch="false"/>
|
|
1370
|
+
<line number="60" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1371
|
+
</lines>
|
|
1372
|
+
</class>
|
|
1373
|
+
<class name="erase.ts" filename="nrfutil/device/erase.ts" line-rate="0.6666" branch-rate="0">
|
|
1374
|
+
<methods>
|
|
1375
|
+
<method name="(anonymous_1)" hits="0" signature="()V">
|
|
1376
|
+
<lines>
|
|
1377
|
+
<line number="14" hits="0"/>
|
|
1322
1378
|
</lines>
|
|
1323
1379
|
</method>
|
|
1324
1380
|
</methods>
|
|
@@ -1385,76 +1441,54 @@
|
|
|
1385
1441
|
<line number="40" hits="0" branch="false"/>
|
|
1386
1442
|
</lines>
|
|
1387
1443
|
</class>
|
|
1388
|
-
<class name="list.ts" filename="nrfutil/device/list.ts" line-rate="0.
|
|
1444
|
+
<class name="list.ts" filename="nrfutil/device/list.ts" line-rate="0.1666" branch-rate="0">
|
|
1389
1445
|
<methods>
|
|
1390
|
-
<method name="(
|
|
1391
|
-
<lines>
|
|
1392
|
-
<line number="26" hits="0"/>
|
|
1393
|
-
</lines>
|
|
1394
|
-
</method>
|
|
1395
|
-
<method name="(anonymous_3)" hits="0" signature="()V">
|
|
1396
|
-
<lines>
|
|
1397
|
-
<line number="29" hits="0"/>
|
|
1398
|
-
</lines>
|
|
1399
|
-
</method>
|
|
1400
|
-
<method name="(anonymous_4)" hits="0" signature="()V">
|
|
1401
|
-
<lines>
|
|
1402
|
-
<line number="33" hits="0"/>
|
|
1403
|
-
</lines>
|
|
1404
|
-
</method>
|
|
1405
|
-
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
1446
|
+
<method name="(anonymous_1)" hits="0" signature="()V">
|
|
1406
1447
|
<lines>
|
|
1407
|
-
<line number="
|
|
1448
|
+
<line number="24" hits="0"/>
|
|
1408
1449
|
</lines>
|
|
1409
1450
|
</method>
|
|
1410
|
-
<method name="(
|
|
1451
|
+
<method name="(anonymous_2)" hits="0" signature="()V">
|
|
1411
1452
|
<lines>
|
|
1412
|
-
<line number="
|
|
1453
|
+
<line number="27" hits="0"/>
|
|
1413
1454
|
</lines>
|
|
1414
1455
|
</method>
|
|
1415
|
-
<method name="(
|
|
1456
|
+
<method name="(anonymous_3)" hits="0" signature="()V">
|
|
1416
1457
|
<lines>
|
|
1417
|
-
<line number="
|
|
1458
|
+
<line number="31" hits="0"/>
|
|
1418
1459
|
</lines>
|
|
1419
1460
|
</method>
|
|
1420
|
-
<method name="(
|
|
1461
|
+
<method name="(anonymous_4)" hits="0" signature="()V">
|
|
1421
1462
|
<lines>
|
|
1422
|
-
<line number="
|
|
1463
|
+
<line number="52" hits="0"/>
|
|
1423
1464
|
</lines>
|
|
1424
1465
|
</method>
|
|
1425
1466
|
</methods>
|
|
1426
1467
|
<lines>
|
|
1427
|
-
<line number="
|
|
1428
|
-
<line number="
|
|
1429
|
-
<line number="
|
|
1430
|
-
<line number="27" hits="
|
|
1431
|
-
<line number="29" hits="
|
|
1432
|
-
<line number="31" hits="
|
|
1433
|
-
<line number="
|
|
1434
|
-
<line number="43" hits="0" branch="
|
|
1435
|
-
<line number="
|
|
1436
|
-
<line number="
|
|
1437
|
-
<line number="
|
|
1438
|
-
<line number="
|
|
1439
|
-
<line number="
|
|
1468
|
+
<line number="12" hits="3" branch="false"/>
|
|
1469
|
+
<line number="24" hits="3" branch="false"/>
|
|
1470
|
+
<line number="25" hits="0" branch="false"/>
|
|
1471
|
+
<line number="27" hits="3" branch="false"/>
|
|
1472
|
+
<line number="29" hits="0" branch="false"/>
|
|
1473
|
+
<line number="31" hits="3" branch="false"/>
|
|
1474
|
+
<line number="41" hits="0" branch="false"/>
|
|
1475
|
+
<line number="43" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1476
|
+
<line number="44" hits="0" branch="false"/>
|
|
1477
|
+
<line number="47" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1478
|
+
<line number="48" hits="0" branch="false"/>
|
|
1479
|
+
<line number="49" hits="0" branch="false"/>
|
|
1480
|
+
<line number="52" hits="0" branch="false"/>
|
|
1481
|
+
<line number="53" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1440
1482
|
<line number="54" hits="0" branch="false"/>
|
|
1441
|
-
<line number="55" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1442
1483
|
<line number="56" hits="0" branch="false"/>
|
|
1443
|
-
<line number="
|
|
1444
|
-
<line number="
|
|
1484
|
+
<line number="59" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
1485
|
+
<line number="60" hits="0" branch="false"/>
|
|
1486
|
+
<line number="63" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1487
|
+
<line number="64" hits="0" branch="false"/>
|
|
1488
|
+
<line number="65" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1445
1489
|
<line number="66" hits="0" branch="false"/>
|
|
1446
|
-
<line number="
|
|
1447
|
-
<line number="
|
|
1448
|
-
<line number="75" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
1449
|
-
<line number="76" hits="0" branch="false"/>
|
|
1450
|
-
<line number="79" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1451
|
-
<line number="80" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
1452
|
-
<line number="81" hits="0" branch="false"/>
|
|
1453
|
-
<line number="85" hits="0" branch="false"/>
|
|
1454
|
-
<line number="91" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
1455
|
-
<line number="92" hits="0" branch="false"/>
|
|
1456
|
-
<line number="96" hits="0" branch="false"/>
|
|
1457
|
-
<line number="97" hits="0" branch="false"/>
|
|
1490
|
+
<line number="70" hits="0" branch="false"/>
|
|
1491
|
+
<line number="71" hits="0" branch="false"/>
|
|
1458
1492
|
</lines>
|
|
1459
1493
|
</class>
|
|
1460
1494
|
<class name="program.ts" filename="nrfutil/device/program.ts" line-rate="0.2407" branch-rate="0">
|
|
@@ -1611,14 +1645,14 @@
|
|
|
1611
1645
|
<methods>
|
|
1612
1646
|
<method name="(anonymous_1)" hits="0" signature="()V">
|
|
1613
1647
|
<lines>
|
|
1614
|
-
<line number="
|
|
1648
|
+
<line number="12" hits="0"/>
|
|
1615
1649
|
</lines>
|
|
1616
1650
|
</method>
|
|
1617
1651
|
</methods>
|
|
1618
1652
|
<lines>
|
|
1619
|
-
<line number="
|
|
1620
|
-
<line number="
|
|
1621
|
-
<line number="
|
|
1653
|
+
<line number="8" hits="3" branch="false"/>
|
|
1654
|
+
<line number="12" hits="3" branch="false"/>
|
|
1655
|
+
<line number="18" hits="0" branch="false"/>
|
|
1622
1656
|
</lines>
|
|
1623
1657
|
</class>
|
|
1624
1658
|
<class name="setProtectionStatus.ts" filename="nrfutil/device/setProtectionStatus.ts" line-rate="0.6666" branch-rate="0">
|
|
@@ -1796,9 +1830,9 @@
|
|
|
1796
1830
|
<line number="20" hits="114"/>
|
|
1797
1831
|
</lines>
|
|
1798
1832
|
</method>
|
|
1799
|
-
<method name="(anonymous_4)" hits="
|
|
1833
|
+
<method name="(anonymous_4)" hits="243" signature="()V">
|
|
1800
1834
|
<lines>
|
|
1801
|
-
<line number="23" hits="
|
|
1835
|
+
<line number="23" hits="243"/>
|
|
1802
1836
|
</lines>
|
|
1803
1837
|
</method>
|
|
1804
1838
|
<method name="(anonymous_5)" hits="57" signature="()V">
|
|
@@ -1830,7 +1864,7 @@
|
|
|
1830
1864
|
<line number="18" hits="9" branch="false"/>
|
|
1831
1865
|
<line number="20" hits="9" branch="false"/>
|
|
1832
1866
|
<line number="21" hits="114" branch="true" condition-coverage="50% (1/2)"/>
|
|
1833
|
-
<line number="23" hits="
|
|
1867
|
+
<line number="23" hits="243" branch="true" condition-coverage="100% (1/1)"/>
|
|
1834
1868
|
<line number="25" hits="57" branch="true" condition-coverage="100% (1/1)"/>
|
|
1835
1869
|
<line number="38" hits="9" branch="false"/>
|
|
1836
1870
|
<line number="39" hits="57" branch="false"/>
|
|
@@ -1841,7 +1875,7 @@
|
|
|
1841
1875
|
</class>
|
|
1842
1876
|
</classes>
|
|
1843
1877
|
</package>
|
|
1844
|
-
<package name="src.About" line-rate="0.
|
|
1878
|
+
<package name="src.About" line-rate="0.7979999999999999" branch-rate="0.3">
|
|
1845
1879
|
<classes>
|
|
1846
1880
|
<class name="About.tsx" filename="src/About/About.tsx" line-rate="1" branch-rate="0.3333">
|
|
1847
1881
|
<methods>
|
|
@@ -1913,7 +1947,7 @@
|
|
|
1913
1947
|
<line number="26" hits="1" branch="true" condition-coverage="100% (1/1)"/>
|
|
1914
1948
|
</lines>
|
|
1915
1949
|
</class>
|
|
1916
|
-
<class name="DeviceCard.tsx" filename="src/About/DeviceCard.tsx" line-rate="0.
|
|
1950
|
+
<class name="DeviceCard.tsx" filename="src/About/DeviceCard.tsx" line-rate="0.7058" branch-rate="0.0555">
|
|
1917
1951
|
<methods>
|
|
1918
1952
|
<method name="(anonymous_2)" hits="0" signature="()V">
|
|
1919
1953
|
<lines>
|
|
@@ -1940,9 +1974,10 @@
|
|
|
1940
1974
|
<line number="25" hits="0" branch="false"/>
|
|
1941
1975
|
<line number="28" hits="1" branch="false"/>
|
|
1942
1976
|
<line number="29" hits="1" branch="false"/>
|
|
1943
|
-
<line number="
|
|
1944
|
-
<line number="
|
|
1945
|
-
<line number="40" hits="0" branch="
|
|
1977
|
+
<line number="30" hits="1" branch="false"/>
|
|
1978
|
+
<line number="32" hits="1" branch="true" condition-coverage="100% (1/1)"/>
|
|
1979
|
+
<line number="40" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
1980
|
+
<line number="41" hits="0" branch="false"/>
|
|
1946
1981
|
</lines>
|
|
1947
1982
|
</class>
|
|
1948
1983
|
<class name="DocumentationCard.tsx" filename="src/About/DocumentationCard.tsx" line-rate="0.75" branch-rate="1">
|
|
@@ -2117,9 +2152,9 @@
|
|
|
2117
2152
|
</class>
|
|
2118
2153
|
</classes>
|
|
2119
2154
|
</package>
|
|
2120
|
-
<package name="src.App" line-rate="0.8" branch-rate="0.
|
|
2155
|
+
<package name="src.App" line-rate="0.8" branch-rate="0.606">
|
|
2121
2156
|
<classes>
|
|
2122
|
-
<class name="App.tsx" filename="src/App/App.tsx" line-rate="0.8665999999999999" branch-rate="0.
|
|
2157
|
+
<class name="App.tsx" filename="src/App/App.tsx" line-rate="0.8665999999999999" branch-rate="0.5555">
|
|
2123
2158
|
<methods>
|
|
2124
2159
|
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
2125
2160
|
<lines>
|
|
@@ -2479,9 +2514,9 @@
|
|
|
2479
2514
|
<classes>
|
|
2480
2515
|
<class name="Button.tsx" filename="src/Button/Button.tsx" line-rate="1" branch-rate="0.7726999999999999">
|
|
2481
2516
|
<methods>
|
|
2482
|
-
<method name="(anonymous_2)" hits="
|
|
2517
|
+
<method name="(anonymous_2)" hits="86" signature="()V">
|
|
2483
2518
|
<lines>
|
|
2484
|
-
<line number="32" hits="
|
|
2519
|
+
<line number="32" hits="86"/>
|
|
2485
2520
|
</lines>
|
|
2486
2521
|
</method>
|
|
2487
2522
|
</methods>
|
|
@@ -2489,8 +2524,8 @@
|
|
|
2489
2524
|
<line number="7" hits="6" branch="false"/>
|
|
2490
2525
|
<line number="9" hits="6" branch="false"/>
|
|
2491
2526
|
<line number="32" hits="6" branch="false"/>
|
|
2492
|
-
<line number="42" hits="
|
|
2493
|
-
<line number="74" hits="
|
|
2527
|
+
<line number="42" hits="86" branch="false"/>
|
|
2528
|
+
<line number="74" hits="86" branch="false"/>
|
|
2494
2529
|
</lines>
|
|
2495
2530
|
</class>
|
|
2496
2531
|
</classes>
|
|
@@ -2515,7 +2550,7 @@
|
|
|
2515
2550
|
</class>
|
|
2516
2551
|
</classes>
|
|
2517
2552
|
</package>
|
|
2518
|
-
<package name="src.Device" line-rate="0.
|
|
2553
|
+
<package name="src.Device" line-rate="0.3636" branch-rate="0.20379999999999998">
|
|
2519
2554
|
<classes>
|
|
2520
2555
|
<class name="deviceAutoSelectSlice.ts" filename="src/Device/deviceAutoSelectSlice.ts" line-rate="0.6111" branch-rate="0.2857">
|
|
2521
2556
|
<methods>
|
|
@@ -2564,24 +2599,24 @@
|
|
|
2564
2599
|
<line number="104" hits="0"/>
|
|
2565
2600
|
</lines>
|
|
2566
2601
|
</method>
|
|
2567
|
-
<method name="(anonymous_29)" hits="
|
|
2602
|
+
<method name="(anonymous_29)" hits="91" signature="()V">
|
|
2568
2603
|
<lines>
|
|
2569
|
-
<line number="125" hits="
|
|
2604
|
+
<line number="125" hits="91"/>
|
|
2570
2605
|
</lines>
|
|
2571
2606
|
</method>
|
|
2572
|
-
<method name="(anonymous_30)" hits="
|
|
2607
|
+
<method name="(anonymous_30)" hits="68" signature="()V">
|
|
2573
2608
|
<lines>
|
|
2574
|
-
<line number="128" hits="
|
|
2609
|
+
<line number="128" hits="68"/>
|
|
2575
2610
|
</lines>
|
|
2576
2611
|
</method>
|
|
2577
|
-
<method name="(anonymous_31)" hits="
|
|
2612
|
+
<method name="(anonymous_31)" hits="165" signature="()V">
|
|
2578
2613
|
<lines>
|
|
2579
|
-
<line number="131" hits="
|
|
2614
|
+
<line number="131" hits="165"/>
|
|
2580
2615
|
</lines>
|
|
2581
2616
|
</method>
|
|
2582
|
-
<method name="(anonymous_32)" hits="
|
|
2617
|
+
<method name="(anonymous_32)" hits="97" signature="()V">
|
|
2583
2618
|
<lines>
|
|
2584
|
-
<line number="135" hits="
|
|
2619
|
+
<line number="135" hits="97"/>
|
|
2585
2620
|
</lines>
|
|
2586
2621
|
</method>
|
|
2587
2622
|
<method name="(anonymous_33)" hits="0" signature="()V">
|
|
@@ -2645,14 +2680,14 @@
|
|
|
2645
2680
|
<line number="120" hits="0" branch="false"/>
|
|
2646
2681
|
<line number="121" hits="0" branch="false"/>
|
|
2647
2682
|
<line number="123" hits="10" branch="false"/>
|
|
2648
|
-
<line number="125" hits="
|
|
2649
|
-
<line number="126" hits="
|
|
2650
|
-
<line number="128" hits="
|
|
2651
|
-
<line number="129" hits="
|
|
2652
|
-
<line number="131" hits="
|
|
2653
|
-
<line number="132" hits="
|
|
2654
|
-
<line number="135" hits="
|
|
2655
|
-
<line number="136" hits="
|
|
2683
|
+
<line number="125" hits="51" branch="false"/>
|
|
2684
|
+
<line number="126" hits="91" branch="false"/>
|
|
2685
|
+
<line number="128" hits="27" branch="false"/>
|
|
2686
|
+
<line number="129" hits="68" branch="false"/>
|
|
2687
|
+
<line number="131" hits="78" branch="false"/>
|
|
2688
|
+
<line number="132" hits="165" branch="true" condition-coverage="50% (1/2)"/>
|
|
2689
|
+
<line number="135" hits="51" branch="false"/>
|
|
2690
|
+
<line number="136" hits="97" branch="false"/>
|
|
2656
2691
|
<line number="138" hits="10" branch="false"/>
|
|
2657
2692
|
<line number="139" hits="0" branch="false"/>
|
|
2658
2693
|
<line number="141" hits="10" branch="false"/>
|
|
@@ -2667,389 +2702,385 @@
|
|
|
2667
2702
|
<line number="153" hits="8" branch="false"/>
|
|
2668
2703
|
</lines>
|
|
2669
2704
|
</class>
|
|
2670
|
-
<class name="deviceLister.ts" filename="src/Device/deviceLister.ts" line-rate="0.
|
|
2705
|
+
<class name="deviceLister.ts" filename="src/Device/deviceLister.ts" line-rate="0.2782" branch-rate="0.10859999999999999">
|
|
2671
2706
|
<methods>
|
|
2672
|
-
<method name="(
|
|
2707
|
+
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
2673
2708
|
<lines>
|
|
2674
|
-
<line number="
|
|
2709
|
+
<line number="35" hits="0"/>
|
|
2675
2710
|
</lines>
|
|
2676
2711
|
</method>
|
|
2677
|
-
<method name="(
|
|
2712
|
+
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
2678
2713
|
<lines>
|
|
2679
|
-
<line number="
|
|
2714
|
+
<line number="40" hits="0"/>
|
|
2715
|
+
</lines>
|
|
2716
|
+
</method>
|
|
2717
|
+
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
2718
|
+
<lines>
|
|
2719
|
+
<line number="45" hits="0"/>
|
|
2680
2720
|
</lines>
|
|
2681
2721
|
</method>
|
|
2682
2722
|
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
2683
2723
|
<lines>
|
|
2684
|
-
<line number="
|
|
2724
|
+
<line number="85" hits="0"/>
|
|
2685
2725
|
</lines>
|
|
2686
2726
|
</method>
|
|
2687
|
-
<method name="(
|
|
2727
|
+
<method name="(anonymous_10)" hits="0" signature="()V">
|
|
2688
2728
|
<lines>
|
|
2689
|
-
<line number="
|
|
2729
|
+
<line number="92" hits="0"/>
|
|
2690
2730
|
</lines>
|
|
2691
2731
|
</method>
|
|
2692
|
-
<method name="(
|
|
2732
|
+
<method name="(anonymous_11)" hits="7" signature="()V">
|
|
2693
2733
|
<lines>
|
|
2694
|
-
<line number="
|
|
2734
|
+
<line number="111" hits="7"/>
|
|
2695
2735
|
</lines>
|
|
2696
2736
|
</method>
|
|
2697
|
-
<method name="(
|
|
2737
|
+
<method name="(anonymous_12)" hits="39" signature="()V">
|
|
2698
2738
|
<lines>
|
|
2699
|
-
<line number="
|
|
2739
|
+
<line number="116" hits="39"/>
|
|
2700
2740
|
</lines>
|
|
2701
2741
|
</method>
|
|
2702
|
-
<method name="(
|
|
2742
|
+
<method name="(anonymous_13)" hits="32" signature="()V">
|
|
2703
2743
|
<lines>
|
|
2704
|
-
<line number="
|
|
2744
|
+
<line number="121" hits="32"/>
|
|
2705
2745
|
</lines>
|
|
2706
2746
|
</method>
|
|
2707
|
-
<method name="(
|
|
2747
|
+
<method name="(anonymous_15)" hits="0" signature="()V">
|
|
2708
2748
|
<lines>
|
|
2709
|
-
<line number="130" hits="
|
|
2749
|
+
<line number="130" hits="0"/>
|
|
2710
2750
|
</lines>
|
|
2711
2751
|
</method>
|
|
2712
|
-
<method name="(anonymous_17)" hits="
|
|
2752
|
+
<method name="(anonymous_17)" hits="11" signature="()V">
|
|
2713
2753
|
<lines>
|
|
2714
|
-
<line number="
|
|
2754
|
+
<line number="164" hits="11"/>
|
|
2715
2755
|
</lines>
|
|
2716
2756
|
</method>
|
|
2717
2757
|
<method name="(anonymous_18)" hits="0" signature="()V">
|
|
2718
2758
|
<lines>
|
|
2719
|
-
<line number="
|
|
2759
|
+
<line number="165" hits="0"/>
|
|
2720
2760
|
</lines>
|
|
2721
2761
|
</method>
|
|
2722
2762
|
<method name="(anonymous_19)" hits="0" signature="()V">
|
|
2723
2763
|
<lines>
|
|
2724
|
-
<line number="
|
|
2764
|
+
<line number="170" hits="0"/>
|
|
2765
|
+
</lines>
|
|
2766
|
+
</method>
|
|
2767
|
+
<method name="(anonymous_20)" hits="0" signature="()V">
|
|
2768
|
+
<lines>
|
|
2769
|
+
<line number="191" hits="0"/>
|
|
2725
2770
|
</lines>
|
|
2726
2771
|
</method>
|
|
2727
|
-
<method name="(anonymous_21)" hits="
|
|
2772
|
+
<method name="(anonymous_21)" hits="0" signature="()V">
|
|
2728
2773
|
<lines>
|
|
2729
|
-
<line number="
|
|
2774
|
+
<line number="289" hits="0"/>
|
|
2730
2775
|
</lines>
|
|
2731
2776
|
</method>
|
|
2732
2777
|
<method name="(anonymous_22)" hits="0" signature="()V">
|
|
2733
2778
|
<lines>
|
|
2734
|
-
<line number="
|
|
2779
|
+
<line number="292" hits="0"/>
|
|
2735
2780
|
</lines>
|
|
2736
2781
|
</method>
|
|
2737
2782
|
<method name="(anonymous_23)" hits="0" signature="()V">
|
|
2738
2783
|
<lines>
|
|
2739
|
-
<line number="
|
|
2784
|
+
<line number="306" hits="0"/>
|
|
2740
2785
|
</lines>
|
|
2741
2786
|
</method>
|
|
2742
|
-
<method name="(anonymous_24)" hits="
|
|
2787
|
+
<method name="(anonymous_24)" hits="1" signature="()V">
|
|
2743
2788
|
<lines>
|
|
2744
|
-
<line number="
|
|
2789
|
+
<line number="341" hits="1"/>
|
|
2745
2790
|
</lines>
|
|
2746
2791
|
</method>
|
|
2747
2792
|
<method name="(anonymous_25)" hits="0" signature="()V">
|
|
2748
2793
|
<lines>
|
|
2749
|
-
<line number="
|
|
2794
|
+
<line number="344" hits="0"/>
|
|
2750
2795
|
</lines>
|
|
2751
2796
|
</method>
|
|
2752
|
-
<method name="(anonymous_26)" hits="
|
|
2797
|
+
<method name="(anonymous_26)" hits="0" signature="()V">
|
|
2753
2798
|
<lines>
|
|
2754
|
-
<line number="
|
|
2799
|
+
<line number="345" hits="0"/>
|
|
2755
2800
|
</lines>
|
|
2756
2801
|
</method>
|
|
2757
|
-
<method name="(anonymous_27)" hits="
|
|
2802
|
+
<method name="(anonymous_27)" hits="21" signature="()V">
|
|
2758
2803
|
<lines>
|
|
2759
|
-
<line number="
|
|
2804
|
+
<line number="351" hits="21"/>
|
|
2760
2805
|
</lines>
|
|
2761
2806
|
</method>
|
|
2762
2807
|
<method name="(anonymous_28)" hits="0" signature="()V">
|
|
2763
2808
|
<lines>
|
|
2764
|
-
<line number="
|
|
2765
|
-
</lines>
|
|
2766
|
-
</method>
|
|
2767
|
-
<method name="(anonymous_29)" hits="21" signature="()V">
|
|
2768
|
-
<lines>
|
|
2769
|
-
<line number="344" hits="21"/>
|
|
2770
|
-
</lines>
|
|
2771
|
-
</method>
|
|
2772
|
-
<method name="(anonymous_30)" hits="0" signature="()V">
|
|
2773
|
-
<lines>
|
|
2774
|
-
<line number="345" hits="0"/>
|
|
2809
|
+
<line number="352" hits="0"/>
|
|
2775
2810
|
</lines>
|
|
2776
2811
|
</method>
|
|
2777
|
-
<method name="(
|
|
2812
|
+
<method name="(anonymous_29)" hits="1" signature="()V">
|
|
2778
2813
|
<lines>
|
|
2779
|
-
<line number="
|
|
2814
|
+
<line number="374" hits="1"/>
|
|
2780
2815
|
</lines>
|
|
2781
2816
|
</method>
|
|
2782
|
-
<method name="(
|
|
2817
|
+
<method name="(anonymous_30)" hits="4" signature="()V">
|
|
2783
2818
|
<lines>
|
|
2784
|
-
<line number="
|
|
2819
|
+
<line number="376" hits="4"/>
|
|
2785
2820
|
</lines>
|
|
2786
2821
|
</method>
|
|
2787
|
-
<method name="(
|
|
2822
|
+
<method name="(anonymous_31)" hits="22" signature="()V">
|
|
2788
2823
|
<lines>
|
|
2789
|
-
<line number="
|
|
2824
|
+
<line number="380" hits="22"/>
|
|
2790
2825
|
</lines>
|
|
2791
2826
|
</method>
|
|
2792
2827
|
</methods>
|
|
2793
2828
|
<lines>
|
|
2794
|
-
<line number="
|
|
2795
|
-
<line number="
|
|
2796
|
-
<line number="
|
|
2797
|
-
<line number="
|
|
2798
|
-
<line number="
|
|
2799
|
-
<line number="27" hits="2" branch="false"/>
|
|
2829
|
+
<line number="8" hits="2" branch="false"/>
|
|
2830
|
+
<line number="9" hits="2" branch="false"/>
|
|
2831
|
+
<line number="20" hits="2" branch="false"/>
|
|
2832
|
+
<line number="21" hits="2" branch="false"/>
|
|
2833
|
+
<line number="29" hits="2" branch="false"/>
|
|
2800
2834
|
<line number="30" hits="2" branch="false"/>
|
|
2801
|
-
<line number="
|
|
2802
|
-
<line number="
|
|
2803
|
-
<line number="
|
|
2804
|
-
<line number="
|
|
2805
|
-
<line number="
|
|
2835
|
+
<line number="33" hits="2" branch="false"/>
|
|
2836
|
+
<line number="35" hits="2" branch="false"/>
|
|
2837
|
+
<line number="39" hits="0" branch="false"/>
|
|
2838
|
+
<line number="41" hits="0" branch="false"/>
|
|
2839
|
+
<line number="45" hits="2" branch="false"/>
|
|
2806
2840
|
<line number="53" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2807
2841
|
<line number="56" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2808
|
-
<line number="
|
|
2809
|
-
<line number="
|
|
2810
|
-
<line number="64" hits="0" branch="
|
|
2811
|
-
<line number="
|
|
2812
|
-
<line number="69" hits="0" branch="
|
|
2842
|
+
<line number="59" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2843
|
+
<line number="60" hits="0" branch="false"/>
|
|
2844
|
+
<line number="64" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2845
|
+
<line number="65" hits="0" branch="false"/>
|
|
2846
|
+
<line number="69" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2813
2847
|
<line number="72" hits="0" branch="false"/>
|
|
2848
|
+
<line number="76" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2814
2849
|
<line number="77" hits="0" branch="false"/>
|
|
2815
|
-
<line number="78" hits="0" branch="false"/>
|
|
2816
2850
|
<line number="80" hits="0" branch="false"/>
|
|
2817
|
-
<line number="82" hits="0" branch="false"/>
|
|
2818
2851
|
<line number="85" hits="0" branch="false"/>
|
|
2819
|
-
<line number="86" hits="0" branch="
|
|
2820
|
-
<line number="
|
|
2821
|
-
<line number="
|
|
2852
|
+
<line number="86" hits="0" branch="false"/>
|
|
2853
|
+
<line number="88" hits="0" branch="false"/>
|
|
2854
|
+
<line number="90" hits="0" branch="false"/>
|
|
2822
2855
|
<line number="93" hits="0" branch="false"/>
|
|
2823
|
-
<line number="
|
|
2824
|
-
<line number="
|
|
2825
|
-
<line number="
|
|
2826
|
-
<line number="
|
|
2827
|
-
<line number="
|
|
2828
|
-
<line number="
|
|
2829
|
-
<line number="
|
|
2830
|
-
<line number="
|
|
2831
|
-
<line number="
|
|
2832
|
-
<line number="
|
|
2833
|
-
<line number="
|
|
2834
|
-
<line number="
|
|
2835
|
-
<line number="
|
|
2836
|
-
<line number="
|
|
2837
|
-
<line number="
|
|
2838
|
-
<line number="
|
|
2839
|
-
<line number="
|
|
2840
|
-
<line number="
|
|
2841
|
-
<line number="
|
|
2842
|
-
<line number="
|
|
2856
|
+
<line number="94" hits="0" branch="true" condition-coverage="0% (0/5)"/>
|
|
2857
|
+
<line number="95" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
2858
|
+
<line number="100" hits="0" branch="false"/>
|
|
2859
|
+
<line number="101" hits="0" branch="false"/>
|
|
2860
|
+
<line number="111" hits="7" branch="false"/>
|
|
2861
|
+
<line number="115" hits="7" branch="true" condition-coverage="100% (2/2)"/>
|
|
2862
|
+
<line number="117" hits="39" branch="true" condition-coverage="100% (2/2)"/>
|
|
2863
|
+
<line number="121" hits="32" branch="false"/>
|
|
2864
|
+
<line number="130" hits="0" branch="false"/>
|
|
2865
|
+
<line number="131" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2866
|
+
<line number="135" hits="0" branch="false"/>
|
|
2867
|
+
<line number="136" hits="0" branch="false"/>
|
|
2868
|
+
<line number="137" hits="0" branch="false"/>
|
|
2869
|
+
<line number="140" hits="0" branch="false"/>
|
|
2870
|
+
<line number="142" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2871
|
+
<line number="143" hits="0" branch="false"/>
|
|
2872
|
+
<line number="146" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2873
|
+
<line number="147" hits="0" branch="false"/>
|
|
2874
|
+
<line number="148" hits="0" branch="false"/>
|
|
2875
|
+
<line number="156" hits="11" branch="false"/>
|
|
2876
|
+
<line number="164" hits="11" branch="false"/>
|
|
2877
|
+
<line number="165" hits="11" branch="false"/>
|
|
2878
|
+
<line number="166" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2879
|
+
<line number="167" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2880
|
+
<line number="170" hits="0" branch="false"/>
|
|
2881
|
+
<line number="173" hits="0" branch="false"/>
|
|
2882
|
+
<line number="177" hits="0" branch="false"/>
|
|
2883
|
+
<line number="178" hits="0" branch="false"/>
|
|
2884
|
+
<line number="179" hits="0" branch="false"/>
|
|
2843
2885
|
<line number="181" hits="0" branch="false"/>
|
|
2844
|
-
<line number="182" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2845
|
-
<line number="186" hits="0" branch="false"/>
|
|
2846
2886
|
<line number="189" hits="0" branch="false"/>
|
|
2887
|
+
<line number="190" hits="0" branch="false"/>
|
|
2847
2888
|
<line number="191" hits="0" branch="false"/>
|
|
2848
|
-
<line number="
|
|
2849
|
-
<line number="
|
|
2850
|
-
<line number="
|
|
2851
|
-
<line number="
|
|
2852
|
-
<line number="
|
|
2853
|
-
<line number="
|
|
2854
|
-
<line number="211" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
2855
|
-
<line number="212" hits="0" branch="false"/>
|
|
2889
|
+
<line number="194" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2890
|
+
<line number="198" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
2891
|
+
<line number="203" hits="0" branch="false"/>
|
|
2892
|
+
<line number="207" hits="0" branch="false"/>
|
|
2893
|
+
<line number="211" hits="0" branch="false"/>
|
|
2894
|
+
<line number="214" hits="0" branch="false"/>
|
|
2856
2895
|
<line number="215" hits="0" branch="false"/>
|
|
2857
2896
|
<line number="216" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2858
2897
|
<line number="221" hits="0" branch="false"/>
|
|
2859
|
-
<line number="
|
|
2860
|
-
<line number="
|
|
2861
|
-
<line number="
|
|
2862
|
-
<line number="
|
|
2863
|
-
<line number="
|
|
2864
|
-
<line number="
|
|
2865
|
-
<line number="
|
|
2866
|
-
<line number="
|
|
2867
|
-
<line number="
|
|
2868
|
-
<line number="
|
|
2869
|
-
<line number="
|
|
2870
|
-
<line number="
|
|
2871
|
-
<line number="
|
|
2872
|
-
<line number="
|
|
2873
|
-
<line number="
|
|
2874
|
-
<line number="
|
|
2898
|
+
<line number="223" hits="0" branch="false"/>
|
|
2899
|
+
<line number="237" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2900
|
+
<line number="245" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
2901
|
+
<line number="262" hits="0" branch="false"/>
|
|
2902
|
+
<line number="267" hits="0" branch="false"/>
|
|
2903
|
+
<line number="269" hits="0" branch="false"/>
|
|
2904
|
+
<line number="271" hits="0" branch="false"/>
|
|
2905
|
+
<line number="275" hits="0" branch="false"/>
|
|
2906
|
+
<line number="276" hits="0" branch="false"/>
|
|
2907
|
+
<line number="278" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2908
|
+
<line number="279" hits="0" branch="false"/>
|
|
2909
|
+
<line number="283" hits="0" branch="false"/>
|
|
2910
|
+
<line number="289" hits="11" branch="false"/>
|
|
2911
|
+
<line number="290" hits="0" branch="false"/>
|
|
2912
|
+
<line number="292" hits="0" branch="false"/>
|
|
2913
|
+
<line number="293" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2875
2914
|
<line number="295" hits="0" branch="false"/>
|
|
2876
|
-
<line number="
|
|
2877
|
-
<line number="
|
|
2878
|
-
<line number="
|
|
2879
|
-
<line number="
|
|
2880
|
-
<line number="
|
|
2881
|
-
<line number="
|
|
2882
|
-
<line number="
|
|
2883
|
-
<line number="
|
|
2884
|
-
<line number="
|
|
2885
|
-
<line number="
|
|
2886
|
-
<line number="
|
|
2887
|
-
<line number="346" hits="0" branch="
|
|
2888
|
-
<line number="350" hits="1" branch="true" condition-coverage="100% (1/1)"/>
|
|
2915
|
+
<line number="296" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
2916
|
+
<line number="301" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
2917
|
+
<line number="302" hits="0" branch="false"/>
|
|
2918
|
+
<line number="304" hits="0" branch="false"/>
|
|
2919
|
+
<line number="307" hits="0" branch="false"/>
|
|
2920
|
+
<line number="318" hits="0" branch="false"/>
|
|
2921
|
+
<line number="327" hits="0" branch="false"/>
|
|
2922
|
+
<line number="329" hits="0" branch="false"/>
|
|
2923
|
+
<line number="341" hits="11" branch="false"/>
|
|
2924
|
+
<line number="342" hits="1" branch="false"/>
|
|
2925
|
+
<line number="344" hits="0" branch="false"/>
|
|
2926
|
+
<line number="346" hits="0" branch="false"/>
|
|
2889
2927
|
<line number="351" hits="1" branch="false"/>
|
|
2890
|
-
<line number="
|
|
2891
|
-
<line number="
|
|
2892
|
-
<line number="357" hits="
|
|
2893
|
-
<line number="358" hits="
|
|
2894
|
-
<line number="360" hits="1" branch="
|
|
2895
|
-
<line number="
|
|
2896
|
-
<line number="366" hits="
|
|
2897
|
-
<line number="367" hits="
|
|
2898
|
-
<line number="
|
|
2899
|
-
<line number="
|
|
2900
|
-
<line number="
|
|
2901
|
-
<line number="
|
|
2928
|
+
<line number="352" hits="21" branch="false"/>
|
|
2929
|
+
<line number="353" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
2930
|
+
<line number="357" hits="1" branch="true" condition-coverage="100% (1/1)"/>
|
|
2931
|
+
<line number="358" hits="1" branch="false"/>
|
|
2932
|
+
<line number="360" hits="1" branch="true" condition-coverage="0% (0/1)"/>
|
|
2933
|
+
<line number="361" hits="0" branch="false"/>
|
|
2934
|
+
<line number="366" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
2935
|
+
<line number="367" hits="0" branch="false"/>
|
|
2936
|
+
<line number="369" hits="1" branch="false"/>
|
|
2937
|
+
<line number="374" hits="2" branch="false"/>
|
|
2938
|
+
<line number="375" hits="1" branch="false"/>
|
|
2939
|
+
<line number="376" hits="4" branch="false"/>
|
|
2940
|
+
<line number="377" hits="1" branch="true" condition-coverage="50% (1/2)"/>
|
|
2941
|
+
<line number="380" hits="11" branch="false"/>
|
|
2942
|
+
<line number="381" hits="22" branch="true" condition-coverage="100% (2/2)"/>
|
|
2943
|
+
<line number="382" hits="1" branch="true" condition-coverage="100% (2/2)"/>
|
|
2902
2944
|
</lines>
|
|
2903
2945
|
</class>
|
|
2904
|
-
<class name="deviceSetup.ts" filename="src/Device/deviceSetup.ts" line-rate="0.
|
|
2946
|
+
<class name="deviceSetup.ts" filename="src/Device/deviceSetup.ts" line-rate="0.6890999999999999" branch-rate="0.4375">
|
|
2905
2947
|
<methods>
|
|
2906
2948
|
<method name="(anonymous_5)" hits="4" signature="()V">
|
|
2907
2949
|
<lines>
|
|
2908
|
-
<line number="
|
|
2950
|
+
<line number="83" hits="4"/>
|
|
2909
2951
|
</lines>
|
|
2910
2952
|
</method>
|
|
2911
2953
|
<method name="(anonymous_6)" hits="2" signature="()V">
|
|
2912
2954
|
<lines>
|
|
2913
|
-
<line number="
|
|
2955
|
+
<line number="84" hits="2"/>
|
|
2914
2956
|
</lines>
|
|
2915
2957
|
</method>
|
|
2916
2958
|
<method name="(anonymous_7)" hits="4" signature="()V">
|
|
2917
2959
|
<lines>
|
|
2918
|
-
<line number="
|
|
2960
|
+
<line number="90" hits="4"/>
|
|
2919
2961
|
</lines>
|
|
2920
2962
|
</method>
|
|
2921
2963
|
<method name="(anonymous_8)" hits="4" signature="()V">
|
|
2922
2964
|
<lines>
|
|
2923
|
-
<line number="
|
|
2965
|
+
<line number="95" hits="4"/>
|
|
2924
2966
|
</lines>
|
|
2925
2967
|
</method>
|
|
2926
2968
|
<method name="(anonymous_9)" hits="2" signature="()V">
|
|
2927
2969
|
<lines>
|
|
2928
|
-
<line number="
|
|
2970
|
+
<line number="144" hits="2"/>
|
|
2929
2971
|
</lines>
|
|
2930
2972
|
</method>
|
|
2931
2973
|
<method name="(anonymous_10)" hits="0" signature="()V">
|
|
2932
2974
|
<lines>
|
|
2933
|
-
<line number="
|
|
2975
|
+
<line number="148" hits="0"/>
|
|
2934
2976
|
</lines>
|
|
2935
2977
|
</method>
|
|
2936
2978
|
<method name="(anonymous_11)" hits="0" signature="()V">
|
|
2937
2979
|
<lines>
|
|
2938
|
-
<line number="
|
|
2980
|
+
<line number="156" hits="0"/>
|
|
2939
2981
|
</lines>
|
|
2940
2982
|
</method>
|
|
2941
2983
|
<method name="(anonymous_12)" hits="1" signature="()V">
|
|
2942
2984
|
<lines>
|
|
2943
|
-
<line number="
|
|
2985
|
+
<line number="170" hits="1"/>
|
|
2944
2986
|
</lines>
|
|
2945
2987
|
</method>
|
|
2946
2988
|
<method name="(anonymous_13)" hits="1" signature="()V">
|
|
2947
2989
|
<lines>
|
|
2948
|
-
<line number="
|
|
2990
|
+
<line number="199" hits="1"/>
|
|
2949
2991
|
</lines>
|
|
2950
2992
|
</method>
|
|
2951
2993
|
<method name="(anonymous_14)" hits="0" signature="()V">
|
|
2952
2994
|
<lines>
|
|
2953
|
-
<line number="
|
|
2954
|
-
</lines>
|
|
2955
|
-
</method>
|
|
2956
|
-
<method name="(anonymous_15)" hits="4" signature="()V">
|
|
2957
|
-
<lines>
|
|
2958
|
-
<line number="225" hits="4"/>
|
|
2959
|
-
</lines>
|
|
2960
|
-
</method>
|
|
2961
|
-
<method name="(anonymous_16)" hits="4" signature="()V">
|
|
2962
|
-
<lines>
|
|
2963
|
-
<line number="231" hits="4"/>
|
|
2995
|
+
<line number="224" hits="0"/>
|
|
2964
2996
|
</lines>
|
|
2965
2997
|
</method>
|
|
2966
2998
|
<method name="(anonymous_17)" hits="2" signature="()V">
|
|
2967
2999
|
<lines>
|
|
2968
|
-
<line number="
|
|
3000
|
+
<line number="256" hits="2"/>
|
|
2969
3001
|
</lines>
|
|
2970
3002
|
</method>
|
|
2971
3003
|
<method name="(anonymous_18)" hits="1" signature="()V">
|
|
2972
3004
|
<lines>
|
|
2973
|
-
<line number="
|
|
3005
|
+
<line number="267" hits="1"/>
|
|
2974
3006
|
</lines>
|
|
2975
3007
|
</method>
|
|
2976
3008
|
</methods>
|
|
2977
3009
|
<lines>
|
|
2978
|
-
<line number="6" hits="1" branch="false"/>
|
|
2979
3010
|
<line number="7" hits="1" branch="false"/>
|
|
2980
|
-
<line number="
|
|
2981
|
-
<line number="
|
|
2982
|
-
<line number="
|
|
2983
|
-
<line number="
|
|
2984
|
-
<line number="
|
|
2985
|
-
<line number="
|
|
2986
|
-
<line number="77" hits="4" branch="false"/>
|
|
2987
|
-
<line number="78" hits="4" branch="false"/>
|
|
2988
|
-
<line number="81" hits="4" branch="false"/>
|
|
2989
|
-
<line number="82" hits="4" branch="false"/>
|
|
2990
|
-
<line number="85" hits="4" branch="true" condition-coverage="100% (1/1)"/>
|
|
3011
|
+
<line number="8" hits="1" branch="false"/>
|
|
3012
|
+
<line number="15" hits="1" branch="false"/>
|
|
3013
|
+
<line number="73" hits="0" branch="false"/>
|
|
3014
|
+
<line number="83" hits="4" branch="false"/>
|
|
3015
|
+
<line number="84" hits="4" branch="false"/>
|
|
3016
|
+
<line number="85" hits="2" branch="false"/>
|
|
2991
3017
|
<line number="86" hits="2" branch="false"/>
|
|
2992
|
-
<line number="
|
|
2993
|
-
<line number="91" hits="
|
|
2994
|
-
<line number="
|
|
2995
|
-
<line number="
|
|
2996
|
-
<line number="
|
|
2997
|
-
<line number="
|
|
2998
|
-
<line number="
|
|
2999
|
-
<line number="
|
|
3000
|
-
<line number="
|
|
3001
|
-
<line number="
|
|
3002
|
-
<line number="
|
|
3003
|
-
<line number="
|
|
3004
|
-
<line number="
|
|
3005
|
-
<line number="
|
|
3006
|
-
<line number="
|
|
3007
|
-
<line number="122" hits="0" branch="false"/>
|
|
3018
|
+
<line number="89" hits="4" branch="false"/>
|
|
3019
|
+
<line number="91" hits="4" branch="false"/>
|
|
3020
|
+
<line number="94" hits="4" branch="false"/>
|
|
3021
|
+
<line number="96" hits="4" branch="false"/>
|
|
3022
|
+
<line number="100" hits="4" branch="true" condition-coverage="100% (1/1)"/>
|
|
3023
|
+
<line number="101" hits="2" branch="false"/>
|
|
3024
|
+
<line number="105" hits="2" branch="true" condition-coverage="100% (2/2)"/>
|
|
3025
|
+
<line number="106" hits="1" branch="false"/>
|
|
3026
|
+
<line number="111" hits="1" branch="false"/>
|
|
3027
|
+
<line number="113" hits="1" branch="false"/>
|
|
3028
|
+
<line number="116" hits="1" branch="false"/>
|
|
3029
|
+
<line number="119" hits="2" branch="false"/>
|
|
3030
|
+
<line number="122" hits="2" branch="true" condition-coverage="100% (1/1)"/>
|
|
3031
|
+
<line number="124" hits="2" branch="false"/>
|
|
3032
|
+
<line number="125" hits="2" branch="false"/>
|
|
3008
3033
|
<line number="127" hits="2" branch="false"/>
|
|
3009
|
-
<line number="
|
|
3010
|
-
<line number="
|
|
3011
|
-
<line number="
|
|
3012
|
-
<line number="
|
|
3034
|
+
<line number="130" hits="2" branch="false"/>
|
|
3035
|
+
<line number="131" hits="2" branch="true" condition-coverage="0% (0/1)"/>
|
|
3036
|
+
<line number="132" hits="0" branch="false"/>
|
|
3037
|
+
<line number="133" hits="0" branch="false"/>
|
|
3038
|
+
<line number="136" hits="0" branch="false"/>
|
|
3013
3039
|
<line number="137" hits="0" branch="false"/>
|
|
3014
|
-
<line number="
|
|
3015
|
-
<line number="
|
|
3016
|
-
<line number="
|
|
3017
|
-
<line number="
|
|
3018
|
-
<line number="
|
|
3019
|
-
<line number="
|
|
3020
|
-
<line number="
|
|
3021
|
-
<line number="
|
|
3022
|
-
<line number="
|
|
3023
|
-
<line number="
|
|
3024
|
-
<line number="
|
|
3025
|
-
<line number="
|
|
3026
|
-
<line number="
|
|
3027
|
-
<line number="169" hits="0" branch="false"/>
|
|
3028
|
-
<line number="170" hits="0" branch="false"/>
|
|
3040
|
+
<line number="142" hits="2" branch="false"/>
|
|
3041
|
+
<line number="144" hits="2" branch="true" condition-coverage="50% (1/2)"/>
|
|
3042
|
+
<line number="148" hits="2" branch="false"/>
|
|
3043
|
+
<line number="149" hits="0" branch="false"/>
|
|
3044
|
+
<line number="151" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
3045
|
+
<line number="152" hits="0" branch="false"/>
|
|
3046
|
+
<line number="154" hits="0" branch="false"/>
|
|
3047
|
+
<line number="157" hits="0" branch="false"/>
|
|
3048
|
+
<line number="158" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3049
|
+
<line number="159" hits="0" branch="false"/>
|
|
3050
|
+
<line number="170" hits="2" branch="false"/>
|
|
3051
|
+
<line number="171" hits="1" branch="false"/>
|
|
3052
|
+
<line number="172" hits="1" branch="false"/>
|
|
3029
3053
|
<line number="173" hits="1" branch="false"/>
|
|
3030
|
-
<line number="
|
|
3031
|
-
<line number="
|
|
3032
|
-
<line number="
|
|
3033
|
-
<line number="
|
|
3034
|
-
<line number="
|
|
3035
|
-
<line number="
|
|
3036
|
-
<line number="
|
|
3037
|
-
<line number="
|
|
3054
|
+
<line number="174" hits="1" branch="false"/>
|
|
3055
|
+
<line number="175" hits="1" branch="false"/>
|
|
3056
|
+
<line number="177" hits="1" branch="false"/>
|
|
3057
|
+
<line number="180" hits="1" branch="true" condition-coverage="0% (0/1)"/>
|
|
3058
|
+
<line number="181" hits="0" branch="false"/>
|
|
3059
|
+
<line number="182" hits="0" branch="false"/>
|
|
3060
|
+
<line number="185" hits="0" branch="false"/>
|
|
3061
|
+
<line number="186" hits="0" branch="false"/>
|
|
3062
|
+
<line number="189" hits="1" branch="false"/>
|
|
3063
|
+
<line number="192" hits="1" branch="false"/>
|
|
3064
|
+
<line number="195" hits="2" branch="true" condition-coverage="50% (1/2)"/>
|
|
3065
|
+
<line number="196" hits="2" branch="true" condition-coverage="50% (1/2)"/>
|
|
3066
|
+
<line number="197" hits="2" branch="false"/>
|
|
3067
|
+
<line number="200" hits="1" branch="true" condition-coverage="50% (1/2)"/>
|
|
3068
|
+
<line number="201" hits="1" branch="false"/>
|
|
3038
3069
|
<line number="203" hits="0" branch="false"/>
|
|
3039
|
-
<line number="
|
|
3040
|
-
<line number="
|
|
3041
|
-
<line number="
|
|
3042
|
-
<line number="
|
|
3043
|
-
<line number="
|
|
3044
|
-
<line number="
|
|
3045
|
-
<line number="
|
|
3046
|
-
<line number="
|
|
3047
|
-
<line number="
|
|
3048
|
-
<line number="
|
|
3049
|
-
<line number="
|
|
3050
|
-
<line number="
|
|
3051
|
-
<line number="
|
|
3052
|
-
<line number="
|
|
3070
|
+
<line number="212" hits="0" branch="false"/>
|
|
3071
|
+
<line number="219" hits="0" branch="false"/>
|
|
3072
|
+
<line number="222" hits="0" branch="false"/>
|
|
3073
|
+
<line number="225" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
3074
|
+
<line number="226" hits="0" branch="false"/>
|
|
3075
|
+
<line number="228" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
3076
|
+
<line number="240" hits="4" branch="false"/>
|
|
3077
|
+
<line number="249" hits="4" branch="false"/>
|
|
3078
|
+
<line number="260" hits="2" branch="true" condition-coverage="100% (1/1)"/>
|
|
3079
|
+
<line number="264" hits="2" branch="false"/>
|
|
3080
|
+
<line number="268" hits="1" branch="false"/>
|
|
3081
|
+
<line number="269" hits="1" branch="false"/>
|
|
3082
|
+
<line number="272" hits="1" branch="false"/>
|
|
3083
|
+
<line number="273" hits="1" branch="false"/>
|
|
3053
3084
|
</lines>
|
|
3054
3085
|
</class>
|
|
3055
3086
|
<class name="deviceSetupSlice.ts" filename="src/Device/deviceSetupSlice.ts" line-rate="0.8125" branch-rate="1">
|
|
@@ -3064,9 +3095,9 @@
|
|
|
3064
3095
|
<line number="33" hits="2"/>
|
|
3065
3096
|
</lines>
|
|
3066
3097
|
</method>
|
|
3067
|
-
<method name="(anonymous_16)" hits="
|
|
3098
|
+
<method name="(anonymous_16)" hits="4" signature="()V">
|
|
3068
3099
|
<lines>
|
|
3069
|
-
<line number="46" hits="
|
|
3100
|
+
<line number="46" hits="4"/>
|
|
3070
3101
|
</lines>
|
|
3071
3102
|
</method>
|
|
3072
3103
|
<method name="(anonymous_17)" hits="0" signature="()V">
|
|
@@ -3114,9 +3145,9 @@
|
|
|
3114
3145
|
<line number="90" hits="68"/>
|
|
3115
3146
|
</lines>
|
|
3116
3147
|
</method>
|
|
3117
|
-
<method name="(anonymous_26)" hits="
|
|
3148
|
+
<method name="(anonymous_26)" hits="68" signature="()V">
|
|
3118
3149
|
<lines>
|
|
3119
|
-
<line number="93" hits="
|
|
3150
|
+
<line number="93" hits="68"/>
|
|
3120
3151
|
</lines>
|
|
3121
3152
|
</method>
|
|
3122
3153
|
</methods>
|
|
@@ -3128,14 +3159,14 @@
|
|
|
3128
3159
|
<line number="42" hits="2" branch="false"/>
|
|
3129
3160
|
<line number="43" hits="2" branch="false"/>
|
|
3130
3161
|
<line number="44" hits="2" branch="false"/>
|
|
3131
|
-
<line number="46" hits="
|
|
3162
|
+
<line number="46" hits="4" branch="false"/>
|
|
3132
3163
|
<line number="49" hits="0" branch="false"/>
|
|
3133
3164
|
<line number="52" hits="0" branch="false"/>
|
|
3134
3165
|
<line number="58" hits="0" branch="false"/>
|
|
3135
3166
|
<line number="61" hits="1" branch="false"/>
|
|
3136
3167
|
<line number="67" hits="57" branch="false"/>
|
|
3137
3168
|
<line number="69" hits="2" branch="false"/>
|
|
3138
|
-
<line number="70" hits="
|
|
3169
|
+
<line number="70" hits="4" branch="false"/>
|
|
3139
3170
|
<line number="71" hits="0" branch="false"/>
|
|
3140
3171
|
<line number="72" hits="0" branch="false"/>
|
|
3141
3172
|
<line number="73" hits="0" branch="false"/>
|
|
@@ -3152,184 +3183,219 @@
|
|
|
3152
3183
|
<line number="90" hits="30" branch="false"/>
|
|
3153
3184
|
<line number="91" hits="68" branch="false"/>
|
|
3154
3185
|
<line number="93" hits="30" branch="false"/>
|
|
3155
|
-
<line number="94" hits="
|
|
3186
|
+
<line number="94" hits="68" branch="false"/>
|
|
3156
3187
|
</lines>
|
|
3157
3188
|
</class>
|
|
3158
|
-
<class name="deviceSlice.ts" filename="src/Device/deviceSlice.ts" line-rate="0.
|
|
3189
|
+
<class name="deviceSlice.ts" filename="src/Device/deviceSlice.ts" line-rate="0.5232" branch-rate="0.25">
|
|
3159
3190
|
<methods>
|
|
3160
|
-
<method name="(
|
|
3191
|
+
<method name="(anonymous_19)" hits="1" signature="()V">
|
|
3161
3192
|
<lines>
|
|
3162
|
-
<line number="
|
|
3193
|
+
<line number="29" hits="1"/>
|
|
3163
3194
|
</lines>
|
|
3164
3195
|
</method>
|
|
3165
|
-
<method name="(
|
|
3166
|
-
<lines>
|
|
3167
|
-
<line number="57" hits="9"/>
|
|
3168
|
-
</lines>
|
|
3169
|
-
</method>
|
|
3170
|
-
<method name="(anonymous_20)" hits="6" signature="()V">
|
|
3196
|
+
<method name="(anonymous_20)" hits="1" signature="()V">
|
|
3171
3197
|
<lines>
|
|
3172
|
-
<line number="
|
|
3198
|
+
<line number="35" hits="1"/>
|
|
3173
3199
|
</lines>
|
|
3174
3200
|
</method>
|
|
3175
|
-
<method name="(anonymous_21)" hits="
|
|
3201
|
+
<method name="(anonymous_21)" hits="0" signature="()V">
|
|
3176
3202
|
<lines>
|
|
3177
|
-
<line number="
|
|
3203
|
+
<line number="41" hits="0"/>
|
|
3178
3204
|
</lines>
|
|
3179
3205
|
</method>
|
|
3180
3206
|
<method name="(anonymous_22)" hits="9" signature="()V">
|
|
3181
3207
|
<lines>
|
|
3182
|
-
<line number="
|
|
3208
|
+
<line number="65" hits="9"/>
|
|
3183
3209
|
</lines>
|
|
3184
3210
|
</method>
|
|
3185
|
-
<method name="(anonymous_23)" hits="
|
|
3211
|
+
<method name="(anonymous_23)" hits="6" signature="()V">
|
|
3186
3212
|
<lines>
|
|
3187
|
-
<line number="
|
|
3213
|
+
<line number="101" hits="6"/>
|
|
3188
3214
|
</lines>
|
|
3189
3215
|
</method>
|
|
3190
3216
|
<method name="(anonymous_24)" hits="0" signature="()V">
|
|
3191
3217
|
<lines>
|
|
3192
|
-
<line number="
|
|
3218
|
+
<line number="105" hits="0"/>
|
|
3193
3219
|
</lines>
|
|
3194
3220
|
</method>
|
|
3195
|
-
<method name="(anonymous_25)" hits="
|
|
3221
|
+
<method name="(anonymous_25)" hits="2" signature="()V">
|
|
3196
3222
|
<lines>
|
|
3197
|
-
<line number="
|
|
3223
|
+
<line number="115" hits="2"/>
|
|
3198
3224
|
</lines>
|
|
3199
3225
|
</method>
|
|
3200
|
-
<method name="(anonymous_26)" hits="
|
|
3226
|
+
<method name="(anonymous_26)" hits="9" signature="()V">
|
|
3201
3227
|
<lines>
|
|
3202
|
-
<line number="
|
|
3228
|
+
<line number="121" hits="9"/>
|
|
3203
3229
|
</lines>
|
|
3204
3230
|
</method>
|
|
3205
3231
|
<method name="(anonymous_27)" hits="0" signature="()V">
|
|
3206
3232
|
<lines>
|
|
3207
|
-
<line number="
|
|
3233
|
+
<line number="123" hits="0"/>
|
|
3208
3234
|
</lines>
|
|
3209
3235
|
</method>
|
|
3210
3236
|
<method name="(anonymous_28)" hits="0" signature="()V">
|
|
3211
3237
|
<lines>
|
|
3212
|
-
<line number="
|
|
3238
|
+
<line number="136" hits="0"/>
|
|
3213
3239
|
</lines>
|
|
3214
3240
|
</method>
|
|
3215
3241
|
<method name="(anonymous_29)" hits="0" signature="()V">
|
|
3216
3242
|
<lines>
|
|
3217
|
-
<line number="
|
|
3243
|
+
<line number="146" hits="0"/>
|
|
3218
3244
|
</lines>
|
|
3219
3245
|
</method>
|
|
3220
|
-
<method name="(anonymous_30)" hits="
|
|
3246
|
+
<method name="(anonymous_30)" hits="1" signature="()V">
|
|
3221
3247
|
<lines>
|
|
3222
|
-
<line number="
|
|
3248
|
+
<line number="178" hits="1"/>
|
|
3223
3249
|
</lines>
|
|
3224
3250
|
</method>
|
|
3225
3251
|
<method name="(anonymous_31)" hits="0" signature="()V">
|
|
3226
3252
|
<lines>
|
|
3227
|
-
<line number="
|
|
3253
|
+
<line number="192" hits="0"/>
|
|
3228
3254
|
</lines>
|
|
3229
3255
|
</method>
|
|
3230
3256
|
<method name="(anonymous_32)" hits="0" signature="()V">
|
|
3231
3257
|
<lines>
|
|
3232
|
-
<line number="
|
|
3258
|
+
<line number="215" hits="0"/>
|
|
3233
3259
|
</lines>
|
|
3234
3260
|
</method>
|
|
3235
|
-
<method name="(anonymous_33)" hits="
|
|
3261
|
+
<method name="(anonymous_33)" hits="0" signature="()V">
|
|
3236
3262
|
<lines>
|
|
3237
|
-
<line number="
|
|
3263
|
+
<line number="218" hits="0"/>
|
|
3238
3264
|
</lines>
|
|
3239
3265
|
</method>
|
|
3240
|
-
<method name="(anonymous_34)" hits="
|
|
3266
|
+
<method name="(anonymous_34)" hits="0" signature="()V">
|
|
3241
3267
|
<lines>
|
|
3242
|
-
<line number="
|
|
3268
|
+
<line number="242" hits="0"/>
|
|
3243
3269
|
</lines>
|
|
3244
3270
|
</method>
|
|
3245
|
-
<method name="(anonymous_35)" hits="
|
|
3271
|
+
<method name="(anonymous_35)" hits="0" signature="()V">
|
|
3246
3272
|
<lines>
|
|
3247
|
-
<line number="
|
|
3273
|
+
<line number="256" hits="0"/>
|
|
3248
3274
|
</lines>
|
|
3249
3275
|
</method>
|
|
3250
|
-
<method name="(anonymous_36)" hits="
|
|
3276
|
+
<method name="(anonymous_36)" hits="0" signature="()V">
|
|
3251
3277
|
<lines>
|
|
3252
|
-
<line number="
|
|
3278
|
+
<line number="281" hits="0"/>
|
|
3253
3279
|
</lines>
|
|
3254
3280
|
</method>
|
|
3255
|
-
<method name="(anonymous_37)" hits="
|
|
3281
|
+
<method name="(anonymous_37)" hits="0" signature="()V">
|
|
3256
3282
|
<lines>
|
|
3257
|
-
<line number="
|
|
3283
|
+
<line number="282" hits="0"/>
|
|
3258
3284
|
</lines>
|
|
3259
3285
|
</method>
|
|
3260
|
-
<method name="(anonymous_38)" hits="
|
|
3286
|
+
<method name="(anonymous_38)" hits="88" signature="()V">
|
|
3261
3287
|
<lines>
|
|
3262
|
-
<line number="
|
|
3288
|
+
<line number="284" hits="88"/>
|
|
3289
|
+
</lines>
|
|
3290
|
+
</method>
|
|
3291
|
+
<method name="(anonymous_39)" hits="76" signature="()V">
|
|
3292
|
+
<lines>
|
|
3293
|
+
<line number="286" hits="76"/>
|
|
3294
|
+
</lines>
|
|
3295
|
+
</method>
|
|
3296
|
+
<method name="(anonymous_40)" hits="180" signature="()V">
|
|
3297
|
+
<lines>
|
|
3298
|
+
<line number="289" hits="180"/>
|
|
3299
|
+
</lines>
|
|
3300
|
+
</method>
|
|
3301
|
+
<method name="(anonymous_41)" hits="10" signature="()V">
|
|
3302
|
+
<lines>
|
|
3303
|
+
<line number="291" hits="10"/>
|
|
3304
|
+
</lines>
|
|
3305
|
+
</method>
|
|
3306
|
+
<method name="(anonymous_43)" hits="0" signature="()V">
|
|
3307
|
+
<lines>
|
|
3308
|
+
<line number="297" hits="0"/>
|
|
3263
3309
|
</lines>
|
|
3264
3310
|
</method>
|
|
3265
3311
|
</methods>
|
|
3266
3312
|
<lines>
|
|
3267
3313
|
<line number="7" hits="10" branch="false"/>
|
|
3268
|
-
<line number="
|
|
3269
|
-
<line number="
|
|
3270
|
-
<line number="
|
|
3271
|
-
<line number="
|
|
3272
|
-
<line number="
|
|
3273
|
-
<line number="
|
|
3274
|
-
<line number="
|
|
3275
|
-
<line number="
|
|
3276
|
-
<line number="
|
|
3277
|
-
<line number="
|
|
3278
|
-
<line number="
|
|
3279
|
-
<line number="
|
|
3280
|
-
<line number="
|
|
3281
|
-
<line number="
|
|
3282
|
-
<line number="
|
|
3283
|
-
<line number="
|
|
3284
|
-
<line number="
|
|
3285
|
-
<line number="
|
|
3286
|
-
<line number="
|
|
3287
|
-
<line number="
|
|
3288
|
-
<line number="
|
|
3289
|
-
<line number="
|
|
3290
|
-
<line number="
|
|
3291
|
-
<line number="
|
|
3292
|
-
<line number="
|
|
3293
|
-
<line number="
|
|
3294
|
-
<line number="
|
|
3314
|
+
<line number="21" hits="10" branch="false"/>
|
|
3315
|
+
<line number="29" hits="10" branch="false"/>
|
|
3316
|
+
<line number="34" hits="1" branch="false"/>
|
|
3317
|
+
<line number="35" hits="1" branch="true" condition-coverage="50% (1/2)"/>
|
|
3318
|
+
<line number="38" hits="1" branch="false"/>
|
|
3319
|
+
<line number="41" hits="10" branch="false"/>
|
|
3320
|
+
<line number="47" hits="0" branch="false"/>
|
|
3321
|
+
<line number="48" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3322
|
+
<line number="49" hits="0" branch="false"/>
|
|
3323
|
+
<line number="60" hits="10" branch="false"/>
|
|
3324
|
+
<line number="65" hits="10" branch="false"/>
|
|
3325
|
+
<line number="66" hits="9" branch="true" condition-coverage="100% (1/1)"/>
|
|
3326
|
+
<line number="67" hits="9" branch="false"/>
|
|
3327
|
+
<line number="68" hits="9" branch="false"/>
|
|
3328
|
+
<line number="69" hits="9" branch="false"/>
|
|
3329
|
+
<line number="71" hits="9" branch="false"/>
|
|
3330
|
+
<line number="75" hits="9" branch="true" condition-coverage="0% (0/1)"/>
|
|
3331
|
+
<line number="77" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
3332
|
+
<line number="80" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3333
|
+
<line number="81" hits="0" branch="false"/>
|
|
3334
|
+
<line number="88" hits="9" branch="false"/>
|
|
3335
|
+
<line number="91" hits="0" branch="false"/>
|
|
3336
|
+
<line number="94" hits="10" branch="false"/>
|
|
3337
|
+
<line number="102" hits="6" branch="false"/>
|
|
3338
|
+
<line number="109" hits="0" branch="false"/>
|
|
3339
|
+
<line number="116" hits="2" branch="false"/>
|
|
3340
|
+
<line number="117" hits="2" branch="false"/>
|
|
3341
|
+
<line number="118" hits="2" branch="false"/>
|
|
3342
|
+
<line number="122" hits="9" branch="false"/>
|
|
3343
|
+
<line number="124" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
3344
|
+
<line number="128" hits="9" branch="false"/>
|
|
3345
|
+
<line number="129" hits="9" branch="true" condition-coverage="50% (1/2)"/>
|
|
3295
3346
|
<line number="130" hits="0" branch="false"/>
|
|
3296
|
-
<line number="
|
|
3297
|
-
<line number="
|
|
3298
|
-
<line number="
|
|
3299
|
-
<line number="
|
|
3300
|
-
<line number="
|
|
3301
|
-
<line number="
|
|
3302
|
-
<line number="
|
|
3303
|
-
<line number="
|
|
3347
|
+
<line number="132" hits="9" branch="false"/>
|
|
3348
|
+
<line number="140" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3349
|
+
<line number="142" hits="0" branch="false"/>
|
|
3350
|
+
<line number="144" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3351
|
+
<line number="145" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
3352
|
+
<line number="146" hits="0" branch="false"/>
|
|
3353
|
+
<line number="149" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3354
|
+
<line number="155" hits="0" branch="false"/>
|
|
3355
|
+
<line number="157" hits="0" branch="false"/>
|
|
3304
3356
|
<line number="165" hits="0" branch="false"/>
|
|
3305
|
-
<line number="
|
|
3306
|
-
<line number="
|
|
3307
|
-
<line number="186" hits="
|
|
3357
|
+
<line number="179" hits="1" branch="false"/>
|
|
3358
|
+
<line number="184" hits="1" branch="false"/>
|
|
3359
|
+
<line number="186" hits="1" branch="true" condition-coverage="60% (3/5)"/>
|
|
3308
3360
|
<line number="187" hits="0" branch="false"/>
|
|
3309
|
-
<line number="
|
|
3310
|
-
<line number="
|
|
3311
|
-
<line number="
|
|
3312
|
-
<line number="
|
|
3313
|
-
<line number="
|
|
3314
|
-
<line number="
|
|
3315
|
-
<line number="
|
|
3316
|
-
<line number="
|
|
3317
|
-
<line number="
|
|
3318
|
-
<line number="
|
|
3319
|
-
<line number="
|
|
3320
|
-
<line number="
|
|
3321
|
-
<line number="
|
|
3322
|
-
<line number="
|
|
3323
|
-
<line number="
|
|
3324
|
-
<line number="
|
|
3325
|
-
<line number="
|
|
3326
|
-
<line number="
|
|
3327
|
-
<line number="
|
|
3328
|
-
<line number="
|
|
3329
|
-
<line number="
|
|
3330
|
-
<line number="
|
|
3331
|
-
<line number="
|
|
3332
|
-
<line number="
|
|
3361
|
+
<line number="188" hits="0" branch="false"/>
|
|
3362
|
+
<line number="193" hits="0" branch="false"/>
|
|
3363
|
+
<line number="199" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3364
|
+
<line number="201" hits="0" branch="false"/>
|
|
3365
|
+
<line number="203" hits="0" branch="false"/>
|
|
3366
|
+
<line number="204" hits="0" branch="false"/>
|
|
3367
|
+
<line number="215" hits="0" branch="false"/>
|
|
3368
|
+
<line number="225" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3369
|
+
<line number="227" hits="0" branch="false"/>
|
|
3370
|
+
<line number="231" hits="0" branch="false"/>
|
|
3371
|
+
<line number="243" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3372
|
+
<line number="245" hits="0" branch="false"/>
|
|
3373
|
+
<line number="246" hits="0" branch="false"/>
|
|
3374
|
+
<line number="260" hits="0" branch="false"/>
|
|
3375
|
+
<line number="266" hits="57" branch="false"/>
|
|
3376
|
+
<line number="268" hits="2" branch="false"/>
|
|
3377
|
+
<line number="269" hits="0" branch="false"/>
|
|
3378
|
+
<line number="270" hits="6" branch="false"/>
|
|
3379
|
+
<line number="271" hits="6" branch="false"/>
|
|
3380
|
+
<line number="272" hits="9" branch="false"/>
|
|
3381
|
+
<line number="273" hits="1" branch="false"/>
|
|
3382
|
+
<line number="274" hits="0" branch="false"/>
|
|
3383
|
+
<line number="275" hits="0" branch="false"/>
|
|
3384
|
+
<line number="276" hits="0" branch="false"/>
|
|
3385
|
+
<line number="277" hits="0" branch="false"/>
|
|
3386
|
+
<line number="279" hits="10" branch="false"/>
|
|
3387
|
+
<line number="281" hits="10" branch="false"/>
|
|
3388
|
+
<line number="282" hits="0" branch="false"/>
|
|
3389
|
+
<line number="284" hits="88" branch="false"/>
|
|
3390
|
+
<line number="286" hits="28" branch="false"/>
|
|
3391
|
+
<line number="287" hits="76" branch="false"/>
|
|
3392
|
+
<line number="289" hits="180" branch="false"/>
|
|
3393
|
+
<line number="291" hits="10" branch="false"/>
|
|
3394
|
+
<line number="292" hits="10" branch="true" condition-coverage="50% (1/2)"/>
|
|
3395
|
+
<line number="294" hits="2" branch="false"/>
|
|
3396
|
+
<line number="295" hits="20" branch="true" condition-coverage="75% (3/4)"/>
|
|
3397
|
+
<line number="297" hits="10" branch="false"/>
|
|
3398
|
+
<line number="298" hits="0" branch="false"/>
|
|
3333
3399
|
</lines>
|
|
3334
3400
|
</class>
|
|
3335
3401
|
<class name="dfu-cc.ts" filename="src/Device/dfu-cc.ts" line-rate="1" branch-rate="1">
|
|
@@ -3499,157 +3565,224 @@
|
|
|
3499
3565
|
<line number="401" hits="0" branch="false"/>
|
|
3500
3566
|
</lines>
|
|
3501
3567
|
</class>
|
|
3502
|
-
<class name="jprogOperations.ts" filename="src/Device/jprogOperations.ts" line-rate="0.
|
|
3568
|
+
<class name="jprogOperations.ts" filename="src/Device/jprogOperations.ts" line-rate="0.2318" branch-rate="0.5609000000000001">
|
|
3503
3569
|
<methods>
|
|
3504
3570
|
<method name="(anonymous_2)" hits="0" signature="()V">
|
|
3505
3571
|
<lines>
|
|
3506
|
-
<line number="
|
|
3572
|
+
<line number="15" hits="0"/>
|
|
3507
3573
|
</lines>
|
|
3508
3574
|
</method>
|
|
3509
3575
|
<method name="(anonymous_3)" hits="0" signature="()V">
|
|
3510
3576
|
<lines>
|
|
3511
|
-
<line number="
|
|
3577
|
+
<line number="47" hits="0"/>
|
|
3512
3578
|
</lines>
|
|
3513
3579
|
</method>
|
|
3514
3580
|
<method name="(anonymous_4)" hits="0" signature="()V">
|
|
3515
3581
|
<lines>
|
|
3516
|
-
<line number="
|
|
3582
|
+
<line number="52" hits="0"/>
|
|
3517
3583
|
</lines>
|
|
3518
3584
|
</method>
|
|
3519
3585
|
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
3520
3586
|
<lines>
|
|
3521
|
-
<line number="
|
|
3587
|
+
<line number="57" hits="0"/>
|
|
3522
3588
|
</lines>
|
|
3523
3589
|
</method>
|
|
3524
|
-
<method name="(
|
|
3590
|
+
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
3525
3591
|
<lines>
|
|
3526
|
-
<line number="
|
|
3592
|
+
<line number="59" hits="0"/>
|
|
3527
3593
|
</lines>
|
|
3528
3594
|
</method>
|
|
3529
|
-
<method name="(
|
|
3595
|
+
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
3530
3596
|
<lines>
|
|
3531
|
-
<line number="
|
|
3597
|
+
<line number="60" hits="0"/>
|
|
3532
3598
|
</lines>
|
|
3533
3599
|
</method>
|
|
3534
|
-
<method name="(
|
|
3600
|
+
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
3535
3601
|
<lines>
|
|
3536
|
-
<line number="
|
|
3602
|
+
<line number="62" hits="0"/>
|
|
3537
3603
|
</lines>
|
|
3538
3604
|
</method>
|
|
3539
|
-
<method name="(
|
|
3605
|
+
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
3540
3606
|
<lines>
|
|
3541
|
-
<line number="
|
|
3607
|
+
<line number="72" hits="0"/>
|
|
3608
|
+
</lines>
|
|
3609
|
+
</method>
|
|
3610
|
+
<method name="(anonymous_10)" hits="0" signature="()V">
|
|
3611
|
+
<lines>
|
|
3612
|
+
<line number="73" hits="0"/>
|
|
3542
3613
|
</lines>
|
|
3543
3614
|
</method>
|
|
3544
3615
|
<method name="(anonymous_11)" hits="0" signature="()V">
|
|
3545
3616
|
<lines>
|
|
3546
|
-
<line number="
|
|
3617
|
+
<line number="74" hits="0"/>
|
|
3547
3618
|
</lines>
|
|
3548
3619
|
</method>
|
|
3549
3620
|
<method name="(anonymous_12)" hits="0" signature="()V">
|
|
3550
3621
|
<lines>
|
|
3551
|
-
<line number="
|
|
3622
|
+
<line number="75" hits="0"/>
|
|
3552
3623
|
</lines>
|
|
3553
3624
|
</method>
|
|
3554
3625
|
<method name="(anonymous_13)" hits="0" signature="()V">
|
|
3555
3626
|
<lines>
|
|
3556
|
-
<line number="
|
|
3627
|
+
<line number="84" hits="0"/>
|
|
3557
3628
|
</lines>
|
|
3558
3629
|
</method>
|
|
3559
3630
|
<method name="(anonymous_14)" hits="0" signature="()V">
|
|
3560
3631
|
<lines>
|
|
3561
|
-
<line number="
|
|
3632
|
+
<line number="85" hits="0"/>
|
|
3562
3633
|
</lines>
|
|
3563
3634
|
</method>
|
|
3564
3635
|
<method name="(anonymous_15)" hits="0" signature="()V">
|
|
3565
3636
|
<lines>
|
|
3566
|
-
<line number="
|
|
3637
|
+
<line number="86" hits="0"/>
|
|
3567
3638
|
</lines>
|
|
3568
3639
|
</method>
|
|
3569
3640
|
<method name="(anonymous_16)" hits="0" signature="()V">
|
|
3570
3641
|
<lines>
|
|
3571
|
-
<line number="
|
|
3642
|
+
<line number="87" hits="0"/>
|
|
3572
3643
|
</lines>
|
|
3573
3644
|
</method>
|
|
3574
|
-
<method name="(
|
|
3645
|
+
<method name="(anonymous_18)" hits="2" signature="()V">
|
|
3575
3646
|
<lines>
|
|
3576
|
-
<line number="
|
|
3647
|
+
<line number="119" hits="2"/>
|
|
3577
3648
|
</lines>
|
|
3578
3649
|
</method>
|
|
3579
|
-
<method name="(
|
|
3650
|
+
<method name="(anonymous_19)" hits="2" signature="()V">
|
|
3580
3651
|
<lines>
|
|
3581
|
-
<line number="
|
|
3652
|
+
<line number="136" hits="2"/>
|
|
3582
3653
|
</lines>
|
|
3583
3654
|
</method>
|
|
3584
|
-
<method name="(
|
|
3655
|
+
<method name="(anonymous_20)" hits="2" signature="()V">
|
|
3585
3656
|
<lines>
|
|
3586
|
-
<line number="
|
|
3657
|
+
<line number="140" hits="2"/>
|
|
3587
3658
|
</lines>
|
|
3588
3659
|
</method>
|
|
3589
|
-
<method name="(
|
|
3660
|
+
<method name="(anonymous_21)" hits="2" signature="()V">
|
|
3590
3661
|
<lines>
|
|
3591
|
-
<line number="
|
|
3662
|
+
<line number="143" hits="2"/>
|
|
3663
|
+
</lines>
|
|
3664
|
+
</method>
|
|
3665
|
+
<method name="(anonymous_22)" hits="0" signature="()V">
|
|
3666
|
+
<lines>
|
|
3667
|
+
<line number="144" hits="0"/>
|
|
3668
|
+
</lines>
|
|
3669
|
+
</method>
|
|
3670
|
+
<method name="(anonymous_23)" hits="0" signature="()V">
|
|
3671
|
+
<lines>
|
|
3672
|
+
<line number="147" hits="0"/>
|
|
3673
|
+
</lines>
|
|
3674
|
+
</method>
|
|
3675
|
+
<method name="(anonymous_24)" hits="0" signature="()V">
|
|
3676
|
+
<lines>
|
|
3677
|
+
<line number="147" hits="0"/>
|
|
3678
|
+
</lines>
|
|
3679
|
+
</method>
|
|
3680
|
+
<method name="(anonymous_25)" hits="0" signature="()V">
|
|
3681
|
+
<lines>
|
|
3682
|
+
<line number="152" hits="0"/>
|
|
3683
|
+
</lines>
|
|
3684
|
+
</method>
|
|
3685
|
+
<method name="(anonymous_26)" hits="0" signature="()V">
|
|
3686
|
+
<lines>
|
|
3687
|
+
<line number="152" hits="0"/>
|
|
3688
|
+
</lines>
|
|
3689
|
+
</method>
|
|
3690
|
+
<method name="(anonymous_27)" hits="0" signature="()V">
|
|
3691
|
+
<lines>
|
|
3692
|
+
<line number="162" hits="0"/>
|
|
3693
|
+
</lines>
|
|
3694
|
+
</method>
|
|
3695
|
+
<method name="(anonymous_28)" hits="0" signature="()V">
|
|
3696
|
+
<lines>
|
|
3697
|
+
<line number="165" hits="0"/>
|
|
3698
|
+
</lines>
|
|
3699
|
+
</method>
|
|
3700
|
+
<method name="(anonymous_29)" hits="0" signature="()V">
|
|
3701
|
+
<lines>
|
|
3702
|
+
<line number="167" hits="0"/>
|
|
3703
|
+
</lines>
|
|
3704
|
+
</method>
|
|
3705
|
+
<method name="(anonymous_30)" hits="0" signature="()V">
|
|
3706
|
+
<lines>
|
|
3707
|
+
<line number="186" hits="0"/>
|
|
3708
|
+
</lines>
|
|
3709
|
+
</method>
|
|
3710
|
+
<method name="(anonymous_31)" hits="0" signature="()V">
|
|
3711
|
+
<lines>
|
|
3712
|
+
<line number="186" hits="0"/>
|
|
3592
3713
|
</lines>
|
|
3593
3714
|
</method>
|
|
3594
3715
|
</methods>
|
|
3595
3716
|
<lines>
|
|
3596
3717
|
<line number="7" hits="1" branch="false"/>
|
|
3597
|
-
<line number="
|
|
3598
|
-
<line number="
|
|
3599
|
-
<line number="
|
|
3600
|
-
<line number="20" hits="0" branch="false"/>
|
|
3718
|
+
<line number="10" hits="1" branch="false"/>
|
|
3719
|
+
<line number="13" hits="1" branch="false"/>
|
|
3720
|
+
<line number="15" hits="1" branch="false"/>
|
|
3601
3721
|
<line number="21" hits="0" branch="false"/>
|
|
3602
3722
|
<line number="22" hits="0" branch="false"/>
|
|
3603
|
-
<line number="
|
|
3723
|
+
<line number="23" hits="0" branch="false"/>
|
|
3724
|
+
<line number="24" hits="0" branch="false"/>
|
|
3604
3725
|
<line number="29" hits="0" branch="false"/>
|
|
3605
|
-
<line number="
|
|
3606
|
-
<line number="
|
|
3607
|
-
<line number="
|
|
3608
|
-
<line number="
|
|
3609
|
-
<line number="
|
|
3610
|
-
<line number="52" hits="0" branch="
|
|
3726
|
+
<line number="30" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3727
|
+
<line number="31" hits="0" branch="false"/>
|
|
3728
|
+
<line number="34" hits="0" branch="false"/>
|
|
3729
|
+
<line number="39" hits="0" branch="false"/>
|
|
3730
|
+
<line number="47" hits="1" branch="false"/>
|
|
3731
|
+
<line number="52" hits="0" branch="false"/>
|
|
3611
3732
|
<line number="53" hits="0" branch="false"/>
|
|
3612
3733
|
<line number="54" hits="0" branch="false"/>
|
|
3613
|
-
<line number="55" hits="0" branch="
|
|
3734
|
+
<line number="55" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3735
|
+
<line number="56" hits="0" branch="false"/>
|
|
3614
3736
|
<line number="58" hits="0" branch="false"/>
|
|
3737
|
+
<line number="59" hits="0" branch="false"/>
|
|
3615
3738
|
<line number="61" hits="0" branch="false"/>
|
|
3616
|
-
<line number="
|
|
3739
|
+
<line number="63" hits="0" branch="false"/>
|
|
3740
|
+
<line number="71" hits="0" branch="false"/>
|
|
3617
3741
|
<line number="72" hits="0" branch="false"/>
|
|
3618
3742
|
<line number="73" hits="0" branch="false"/>
|
|
3619
3743
|
<line number="74" hits="0" branch="false"/>
|
|
3620
|
-
<line number="
|
|
3621
|
-
<line number="78" hits="0" branch="false"/>
|
|
3622
|
-
<line number="79" hits="0" branch="false"/>
|
|
3623
|
-
<line number="81" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3624
|
-
<line number="82" hits="0" branch="false"/>
|
|
3744
|
+
<line number="76" hits="0" branch="false"/>
|
|
3625
3745
|
<line number="83" hits="0" branch="false"/>
|
|
3746
|
+
<line number="84" hits="0" branch="false"/>
|
|
3747
|
+
<line number="85" hits="0" branch="false"/>
|
|
3748
|
+
<line number="86" hits="0" branch="false"/>
|
|
3626
3749
|
<line number="88" hits="0" branch="false"/>
|
|
3627
|
-
<line number="
|
|
3628
|
-
<line number="
|
|
3629
|
-
<line number="
|
|
3630
|
-
<line number="
|
|
3631
|
-
<line number="
|
|
3632
|
-
<line number="
|
|
3633
|
-
<line number="
|
|
3634
|
-
<line number="
|
|
3635
|
-
<line number="
|
|
3636
|
-
<line number="
|
|
3637
|
-
<line number="
|
|
3638
|
-
<line number="
|
|
3639
|
-
<line number="
|
|
3640
|
-
<line number="
|
|
3641
|
-
<line number="
|
|
3642
|
-
<line number="
|
|
3643
|
-
<line number="
|
|
3644
|
-
<line number="
|
|
3645
|
-
<line number="
|
|
3646
|
-
<line number="
|
|
3647
|
-
<line number="
|
|
3648
|
-
<line number="
|
|
3649
|
-
<line number="
|
|
3650
|
-
<line number="
|
|
3651
|
-
<line number="
|
|
3652
|
-
<line number="
|
|
3750
|
+
<line number="95" hits="0" branch="false"/>
|
|
3751
|
+
<line number="96" hits="0" branch="false"/>
|
|
3752
|
+
<line number="97" hits="0" branch="false"/>
|
|
3753
|
+
<line number="98" hits="0" branch="false"/>
|
|
3754
|
+
<line number="101" hits="0" branch="false"/>
|
|
3755
|
+
<line number="102" hits="0" branch="false"/>
|
|
3756
|
+
<line number="104" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3757
|
+
<line number="105" hits="0" branch="false"/>
|
|
3758
|
+
<line number="106" hits="0" branch="false"/>
|
|
3759
|
+
<line number="111" hits="0" branch="false"/>
|
|
3760
|
+
<line number="119" hits="2" branch="false"/>
|
|
3761
|
+
<line number="120" hits="2" branch="true" condition-coverage="66.66666666666666% (4/6)"/>
|
|
3762
|
+
<line number="121" hits="2" branch="false"/>
|
|
3763
|
+
<line number="124" hits="2" branch="false"/>
|
|
3764
|
+
<line number="125" hits="2" branch="true" condition-coverage="66.66666666666666% (4/6)"/>
|
|
3765
|
+
<line number="127" hits="2" branch="false"/>
|
|
3766
|
+
<line number="128" hits="2" branch="false"/>
|
|
3767
|
+
<line number="136" hits="2" branch="false"/>
|
|
3768
|
+
<line number="139" hits="2" branch="false"/>
|
|
3769
|
+
<line number="141" hits="2" branch="true" condition-coverage="66.66666666666666% (2/3)"/>
|
|
3770
|
+
<line number="144" hits="2" branch="false"/>
|
|
3771
|
+
<line number="147" hits="0" branch="false"/>
|
|
3772
|
+
<line number="148" hits="0" branch="false"/>
|
|
3773
|
+
<line number="152" hits="0" branch="false"/>
|
|
3774
|
+
<line number="153" hits="0" branch="false"/>
|
|
3775
|
+
<line number="154" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3776
|
+
<line number="155" hits="0" branch="false"/>
|
|
3777
|
+
<line number="161" hits="0" branch="false"/>
|
|
3778
|
+
<line number="163" hits="0" branch="false"/>
|
|
3779
|
+
<line number="164" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
3780
|
+
<line number="165" hits="0" branch="false"/>
|
|
3781
|
+
<line number="166" hits="0" branch="false"/>
|
|
3782
|
+
<line number="168" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
3783
|
+
<line number="173" hits="0" branch="false"/>
|
|
3784
|
+
<line number="179" hits="0" branch="false"/>
|
|
3785
|
+
<line number="186" hits="0" branch="false"/>
|
|
3653
3786
|
</lines>
|
|
3654
3787
|
</class>
|
|
3655
3788
|
<class name="sdfuOperations.ts" filename="src/Device/sdfuOperations.ts" line-rate="0.15869999999999998" branch-rate="0">
|
|
@@ -3661,262 +3794,247 @@
|
|
|
3661
3794
|
</method>
|
|
3662
3795
|
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
3663
3796
|
<lines>
|
|
3664
|
-
<line number="
|
|
3797
|
+
<line number="57" hits="0"/>
|
|
3665
3798
|
</lines>
|
|
3666
3799
|
</method>
|
|
3667
3800
|
<method name="(anonymous_10)" hits="0" signature="()V">
|
|
3668
3801
|
<lines>
|
|
3669
|
-
<line number="
|
|
3802
|
+
<line number="66" hits="0"/>
|
|
3670
3803
|
</lines>
|
|
3671
3804
|
</method>
|
|
3672
3805
|
<method name="(anonymous_11)" hits="0" signature="()V">
|
|
3673
3806
|
<lines>
|
|
3674
|
-
<line number="
|
|
3807
|
+
<line number="70" hits="0"/>
|
|
3675
3808
|
</lines>
|
|
3676
3809
|
</method>
|
|
3677
3810
|
<method name="(anonymous_12)" hits="0" signature="()V">
|
|
3678
3811
|
<lines>
|
|
3679
|
-
<line number="
|
|
3812
|
+
<line number="83" hits="0"/>
|
|
3680
3813
|
</lines>
|
|
3681
3814
|
</method>
|
|
3682
3815
|
<method name="(anonymous_13)" hits="0" signature="()V">
|
|
3683
3816
|
<lines>
|
|
3684
|
-
<line number="
|
|
3817
|
+
<line number="89" hits="0"/>
|
|
3685
3818
|
</lines>
|
|
3686
3819
|
</method>
|
|
3687
3820
|
<method name="(anonymous_14)" hits="0" signature="()V">
|
|
3688
3821
|
<lines>
|
|
3689
|
-
<line number="
|
|
3822
|
+
<line number="112" hits="0"/>
|
|
3690
3823
|
</lines>
|
|
3691
3824
|
</method>
|
|
3692
3825
|
<method name="(anonymous_15)" hits="0" signature="()V">
|
|
3693
3826
|
<lines>
|
|
3694
|
-
<line number="
|
|
3827
|
+
<line number="146" hits="0"/>
|
|
3695
3828
|
</lines>
|
|
3696
3829
|
</method>
|
|
3697
3830
|
<method name="(anonymous_16)" hits="0" signature="()V">
|
|
3698
3831
|
<lines>
|
|
3699
|
-
<line number="
|
|
3832
|
+
<line number="152" hits="0"/>
|
|
3700
3833
|
</lines>
|
|
3701
3834
|
</method>
|
|
3702
3835
|
<method name="(anonymous_17)" hits="0" signature="()V">
|
|
3703
3836
|
<lines>
|
|
3704
|
-
<line number="
|
|
3837
|
+
<line number="165" hits="0"/>
|
|
3705
3838
|
</lines>
|
|
3706
3839
|
</method>
|
|
3707
3840
|
<method name="(anonymous_18)" hits="0" signature="()V">
|
|
3708
3841
|
<lines>
|
|
3709
|
-
<line number="
|
|
3842
|
+
<line number="172" hits="0"/>
|
|
3710
3843
|
</lines>
|
|
3711
3844
|
</method>
|
|
3712
3845
|
<method name="(anonymous_19)" hits="0" signature="()V">
|
|
3713
3846
|
<lines>
|
|
3714
|
-
<line number="
|
|
3847
|
+
<line number="177" hits="0"/>
|
|
3715
3848
|
</lines>
|
|
3716
3849
|
</method>
|
|
3717
3850
|
<method name="(anonymous_20)" hits="0" signature="()V">
|
|
3718
3851
|
<lines>
|
|
3719
|
-
<line number="
|
|
3852
|
+
<line number="183" hits="0"/>
|
|
3720
3853
|
</lines>
|
|
3721
3854
|
</method>
|
|
3722
3855
|
<method name="(anonymous_21)" hits="0" signature="()V">
|
|
3723
3856
|
<lines>
|
|
3724
|
-
<line number="
|
|
3857
|
+
<line number="199" hits="0"/>
|
|
3725
3858
|
</lines>
|
|
3726
3859
|
</method>
|
|
3727
3860
|
<method name="(anonymous_22)" hits="0" signature="()V">
|
|
3728
3861
|
<lines>
|
|
3729
|
-
<line number="
|
|
3862
|
+
<line number="204" hits="0"/>
|
|
3730
3863
|
</lines>
|
|
3731
3864
|
</method>
|
|
3732
3865
|
<method name="(anonymous_23)" hits="0" signature="()V">
|
|
3733
3866
|
<lines>
|
|
3734
|
-
<line number="
|
|
3867
|
+
<line number="210" hits="0"/>
|
|
3735
3868
|
</lines>
|
|
3736
3869
|
</method>
|
|
3737
3870
|
<method name="(anonymous_24)" hits="0" signature="()V">
|
|
3738
3871
|
<lines>
|
|
3739
|
-
<line number="
|
|
3872
|
+
<line number="227" hits="0"/>
|
|
3740
3873
|
</lines>
|
|
3741
3874
|
</method>
|
|
3742
3875
|
<method name="(anonymous_25)" hits="0" signature="()V">
|
|
3743
3876
|
<lines>
|
|
3744
|
-
<line number="
|
|
3877
|
+
<line number="247" hits="0"/>
|
|
3745
3878
|
</lines>
|
|
3746
3879
|
</method>
|
|
3747
3880
|
<method name="(anonymous_26)" hits="0" signature="()V">
|
|
3748
3881
|
<lines>
|
|
3749
|
-
<line number="
|
|
3882
|
+
<line number="253" hits="0"/>
|
|
3750
3883
|
</lines>
|
|
3751
3884
|
</method>
|
|
3752
3885
|
<method name="(anonymous_27)" hits="0" signature="()V">
|
|
3753
3886
|
<lines>
|
|
3754
|
-
<line number="
|
|
3887
|
+
<line number="257" hits="0"/>
|
|
3755
3888
|
</lines>
|
|
3756
3889
|
</method>
|
|
3757
3890
|
<method name="(anonymous_28)" hits="0" signature="()V">
|
|
3758
3891
|
<lines>
|
|
3759
|
-
<line number="
|
|
3892
|
+
<line number="261" hits="0"/>
|
|
3760
3893
|
</lines>
|
|
3761
3894
|
</method>
|
|
3762
3895
|
<method name="(anonymous_29)" hits="0" signature="()V">
|
|
3763
3896
|
<lines>
|
|
3764
|
-
<line number="
|
|
3897
|
+
<line number="268" hits="0"/>
|
|
3765
3898
|
</lines>
|
|
3766
3899
|
</method>
|
|
3767
3900
|
<method name="parseFirmwareImage" hits="0" signature="()V">
|
|
3768
3901
|
<lines>
|
|
3769
|
-
<line number="
|
|
3902
|
+
<line number="306" hits="0"/>
|
|
3770
3903
|
</lines>
|
|
3771
3904
|
</method>
|
|
3772
3905
|
<method name="(anonymous_31)" hits="0" signature="()V">
|
|
3773
3906
|
<lines>
|
|
3774
|
-
<line number="
|
|
3907
|
+
<line number="313" hits="0"/>
|
|
3775
3908
|
</lines>
|
|
3776
3909
|
</method>
|
|
3777
3910
|
<method name="calculateSHA256Hash" hits="0" signature="()V">
|
|
3778
3911
|
<lines>
|
|
3779
|
-
<line number="
|
|
3912
|
+
<line number="323" hits="0"/>
|
|
3780
3913
|
</lines>
|
|
3781
3914
|
</method>
|
|
3782
3915
|
<method name="(anonymous_33)" hits="0" signature="()V">
|
|
3783
3916
|
<lines>
|
|
3784
|
-
<line number="
|
|
3917
|
+
<line number="335" hits="0"/>
|
|
3785
3918
|
</lines>
|
|
3786
3919
|
</method>
|
|
3787
3920
|
<method name="(anonymous_34)" hits="0" signature="()V">
|
|
3788
3921
|
<lines>
|
|
3789
|
-
<line number="
|
|
3922
|
+
<line number="336" hits="0"/>
|
|
3790
3923
|
</lines>
|
|
3791
3924
|
</method>
|
|
3792
3925
|
<method name="(anonymous_35)" hits="0" signature="()V">
|
|
3793
3926
|
<lines>
|
|
3794
|
-
<line number="
|
|
3927
|
+
<line number="354" hits="0"/>
|
|
3795
3928
|
</lines>
|
|
3796
3929
|
</method>
|
|
3797
3930
|
<method name="(anonymous_36)" hits="0" signature="()V">
|
|
3798
3931
|
<lines>
|
|
3799
|
-
<line number="
|
|
3932
|
+
<line number="355" hits="0"/>
|
|
3800
3933
|
</lines>
|
|
3801
3934
|
</method>
|
|
3802
3935
|
<method name="(anonymous_37)" hits="0" signature="()V">
|
|
3803
3936
|
<lines>
|
|
3804
|
-
<line number="
|
|
3937
|
+
<line number="368" hits="0"/>
|
|
3805
3938
|
</lines>
|
|
3806
3939
|
</method>
|
|
3807
3940
|
<method name="(anonymous_38)" hits="0" signature="()V">
|
|
3808
3941
|
<lines>
|
|
3809
|
-
<line number="
|
|
3942
|
+
<line number="369" hits="0"/>
|
|
3810
3943
|
</lines>
|
|
3811
3944
|
</method>
|
|
3812
3945
|
<method name="(anonymous_39)" hits="0" signature="()V">
|
|
3813
3946
|
<lines>
|
|
3814
|
-
<line number="
|
|
3947
|
+
<line number="399" hits="0"/>
|
|
3948
|
+
</lines>
|
|
3949
|
+
</method>
|
|
3950
|
+
<method name="(anonymous_40)" hits="0" signature="()V">
|
|
3951
|
+
<lines>
|
|
3952
|
+
<line number="406" hits="0"/>
|
|
3815
3953
|
</lines>
|
|
3816
3954
|
</method>
|
|
3817
3955
|
<method name="(anonymous_41)" hits="0" signature="()V">
|
|
3818
3956
|
<lines>
|
|
3819
|
-
<line number="
|
|
3957
|
+
<line number="413" hits="0"/>
|
|
3820
3958
|
</lines>
|
|
3821
3959
|
</method>
|
|
3822
3960
|
<method name="(anonymous_42)" hits="0" signature="()V">
|
|
3823
3961
|
<lines>
|
|
3824
|
-
<line number="
|
|
3962
|
+
<line number="482" hits="0"/>
|
|
3825
3963
|
</lines>
|
|
3826
3964
|
</method>
|
|
3827
3965
|
<method name="(anonymous_43)" hits="0" signature="()V">
|
|
3828
3966
|
<lines>
|
|
3829
|
-
<line number="
|
|
3967
|
+
<line number="489" hits="0"/>
|
|
3830
3968
|
</lines>
|
|
3831
3969
|
</method>
|
|
3832
3970
|
<method name="(anonymous_44)" hits="0" signature="()V">
|
|
3833
3971
|
<lines>
|
|
3834
|
-
<line number="
|
|
3972
|
+
<line number="505" hits="0"/>
|
|
3835
3973
|
</lines>
|
|
3836
3974
|
</method>
|
|
3837
3975
|
<method name="(anonymous_45)" hits="0" signature="()V">
|
|
3838
3976
|
<lines>
|
|
3839
|
-
<line number="
|
|
3977
|
+
<line number="518" hits="0"/>
|
|
3840
3978
|
</lines>
|
|
3841
3979
|
</method>
|
|
3842
3980
|
<method name="(anonymous_46)" hits="0" signature="()V">
|
|
3843
3981
|
<lines>
|
|
3844
|
-
<line number="
|
|
3982
|
+
<line number="523" hits="0"/>
|
|
3845
3983
|
</lines>
|
|
3846
3984
|
</method>
|
|
3847
3985
|
<method name="(anonymous_47)" hits="0" signature="()V">
|
|
3848
3986
|
<lines>
|
|
3849
|
-
<line number="
|
|
3987
|
+
<line number="524" hits="0"/>
|
|
3850
3988
|
</lines>
|
|
3851
3989
|
</method>
|
|
3852
3990
|
<method name="(anonymous_48)" hits="0" signature="()V">
|
|
3853
3991
|
<lines>
|
|
3854
|
-
<line number="
|
|
3855
|
-
</lines>
|
|
3856
|
-
</method>
|
|
3857
|
-
<method name="(anonymous_49)" hits="0" signature="()V">
|
|
3858
|
-
<lines>
|
|
3859
|
-
<line number="544" hits="0"/>
|
|
3860
|
-
</lines>
|
|
3861
|
-
</method>
|
|
3862
|
-
<method name="(anonymous_50)" hits="0" signature="()V">
|
|
3863
|
-
<lines>
|
|
3864
|
-
<line number="548" hits="0"/>
|
|
3992
|
+
<line number="525" hits="0"/>
|
|
3865
3993
|
</lines>
|
|
3866
3994
|
</method>
|
|
3867
3995
|
<method name="(anonymous_51)" hits="0" signature="()V">
|
|
3868
3996
|
<lines>
|
|
3869
|
-
<line number="
|
|
3997
|
+
<line number="552" hits="0"/>
|
|
3870
3998
|
</lines>
|
|
3871
3999
|
</method>
|
|
3872
4000
|
<method name="(anonymous_52)" hits="0" signature="()V">
|
|
3873
4001
|
<lines>
|
|
3874
|
-
<line number="
|
|
4002
|
+
<line number="553" hits="0"/>
|
|
3875
4003
|
</lines>
|
|
3876
4004
|
</method>
|
|
3877
4005
|
<method name="(anonymous_53)" hits="0" signature="()V">
|
|
3878
4006
|
<lines>
|
|
3879
|
-
<line number="
|
|
4007
|
+
<line number="556" hits="0"/>
|
|
3880
4008
|
</lines>
|
|
3881
4009
|
</method>
|
|
3882
4010
|
<method name="(anonymous_54)" hits="0" signature="()V">
|
|
3883
4011
|
<lines>
|
|
3884
|
-
<line number="
|
|
3885
|
-
</lines>
|
|
3886
|
-
</method>
|
|
3887
|
-
<method name="(anonymous_55)" hits="0" signature="()V">
|
|
3888
|
-
<lines>
|
|
3889
|
-
<line number="562" hits="0"/>
|
|
4012
|
+
<line number="556" hits="0"/>
|
|
3890
4013
|
</lines>
|
|
3891
4014
|
</method>
|
|
3892
4015
|
<method name="(anonymous_56)" hits="0" signature="()V">
|
|
3893
4016
|
<lines>
|
|
3894
|
-
<line number="
|
|
4017
|
+
<line number="561" hits="0"/>
|
|
3895
4018
|
</lines>
|
|
3896
4019
|
</method>
|
|
3897
4020
|
<method name="(anonymous_57)" hits="0" signature="()V">
|
|
3898
4021
|
<lines>
|
|
3899
|
-
<line number="
|
|
4022
|
+
<line number="572" hits="0"/>
|
|
3900
4023
|
</lines>
|
|
3901
4024
|
</method>
|
|
3902
4025
|
<method name="(anonymous_58)" hits="0" signature="()V">
|
|
3903
4026
|
<lines>
|
|
3904
|
-
<line number="
|
|
4027
|
+
<line number="581" hits="0"/>
|
|
3905
4028
|
</lines>
|
|
3906
4029
|
</method>
|
|
3907
4030
|
<method name="(anonymous_59)" hits="0" signature="()V">
|
|
3908
4031
|
<lines>
|
|
3909
|
-
<line number="
|
|
4032
|
+
<line number="581" hits="0"/>
|
|
3910
4033
|
</lines>
|
|
3911
4034
|
</method>
|
|
3912
4035
|
<method name="(anonymous_60)" hits="0" signature="()V">
|
|
3913
4036
|
<lines>
|
|
3914
|
-
<line number="
|
|
3915
|
-
</lines>
|
|
3916
|
-
</method>
|
|
3917
|
-
<method name="(anonymous_61)" hits="0" signature="()V">
|
|
3918
|
-
<lines>
|
|
3919
|
-
<line number="588" hits="0"/>
|
|
4037
|
+
<line number="582" hits="0"/>
|
|
3920
4038
|
</lines>
|
|
3921
4039
|
</method>
|
|
3922
4040
|
</methods>
|
|
@@ -3942,174 +4060,174 @@
|
|
|
3942
4060
|
<line number="42" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3943
4061
|
<line number="43" hits="0" branch="false"/>
|
|
3944
4062
|
<line number="44" hits="0" branch="false"/>
|
|
3945
|
-
<line number="
|
|
3946
|
-
<line number="
|
|
3947
|
-
<line number="
|
|
3948
|
-
<line number="
|
|
3949
|
-
<line number="
|
|
3950
|
-
<line number="
|
|
3951
|
-
<line number="58" hits="0" branch="false"/>
|
|
4063
|
+
<line number="50" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
4064
|
+
<line number="51" hits="0" branch="false"/>
|
|
4065
|
+
<line number="52" hits="0" branch="true" condition-coverage="0% (0/6)"/>
|
|
4066
|
+
<line number="54" hits="0" branch="false"/>
|
|
4067
|
+
<line number="57" hits="2" branch="false"/>
|
|
4068
|
+
<line number="58" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
3952
4069
|
<line number="59" hits="0" branch="false"/>
|
|
3953
|
-
<line number="
|
|
4070
|
+
<line number="60" hits="0" branch="false"/>
|
|
3954
4071
|
<line number="62" hits="0" branch="false"/>
|
|
3955
|
-
<line number="
|
|
3956
|
-
<line number="66" hits="
|
|
3957
|
-
<line number="
|
|
4072
|
+
<line number="63" hits="0" branch="false"/>
|
|
4073
|
+
<line number="66" hits="2" branch="false"/>
|
|
4074
|
+
<line number="67" hits="0" branch="false"/>
|
|
3958
4075
|
<line number="69" hits="0" branch="false"/>
|
|
3959
|
-
<line number="
|
|
3960
|
-
<line number="72" hits="0" branch="
|
|
3961
|
-
<line number="
|
|
3962
|
-
<line number="
|
|
3963
|
-
<line number="
|
|
4076
|
+
<line number="70" hits="0" branch="false"/>
|
|
4077
|
+
<line number="72" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
4078
|
+
<line number="73" hits="0" branch="false"/>
|
|
4079
|
+
<line number="79" hits="0" branch="false"/>
|
|
4080
|
+
<line number="83" hits="2" branch="false"/>
|
|
3964
4081
|
<line number="89" hits="0" branch="false"/>
|
|
3965
4082
|
<line number="90" hits="0" branch="false"/>
|
|
3966
4083
|
<line number="91" hits="0" branch="false"/>
|
|
3967
|
-
<line number="
|
|
3968
|
-
<line number="
|
|
3969
|
-
<line number="
|
|
3970
|
-
<line number="
|
|
4084
|
+
<line number="92" hits="0" branch="false"/>
|
|
4085
|
+
<line number="94" hits="0" branch="false"/>
|
|
4086
|
+
<line number="96" hits="0" branch="false"/>
|
|
4087
|
+
<line number="98" hits="0" branch="false"/>
|
|
3971
4088
|
<line number="108" hits="0" branch="false"/>
|
|
3972
|
-
<line number="
|
|
3973
|
-
<line number="
|
|
3974
|
-
<line number="120" hits="0" branch="
|
|
3975
|
-
<line number="
|
|
3976
|
-
<line number="
|
|
3977
|
-
<line number="
|
|
4089
|
+
<line number="109" hits="0" branch="false"/>
|
|
4090
|
+
<line number="113" hits="0" branch="false"/>
|
|
4091
|
+
<line number="120" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4092
|
+
<line number="121" hits="0" branch="false"/>
|
|
4093
|
+
<line number="126" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4094
|
+
<line number="128" hits="0" branch="false"/>
|
|
3978
4095
|
<line number="138" hits="0" branch="false"/>
|
|
3979
4096
|
<line number="139" hits="0" branch="false"/>
|
|
3980
|
-
<line number="
|
|
3981
|
-
<line number="
|
|
4097
|
+
<line number="140" hits="0" branch="false"/>
|
|
4098
|
+
<line number="146" hits="2" branch="false"/>
|
|
3982
4099
|
<line number="152" hits="0" branch="false"/>
|
|
3983
|
-
<line number="
|
|
4100
|
+
<line number="153" hits="0" branch="false"/>
|
|
3984
4101
|
<line number="165" hits="0" branch="false"/>
|
|
3985
4102
|
<line number="166" hits="0" branch="false"/>
|
|
3986
|
-
<line number="
|
|
3987
|
-
<line number="171" hits="
|
|
3988
|
-
<line number="
|
|
3989
|
-
<line number="177" hits="0" branch="
|
|
3990
|
-
<line number="178" hits="0" branch="
|
|
3991
|
-
<line number="
|
|
3992
|
-
<line number="184" hits="0" branch="
|
|
3993
|
-
<line number="
|
|
3994
|
-
<line number="
|
|
3995
|
-
<line number="193" hits="0" branch="
|
|
3996
|
-
<line number="
|
|
3997
|
-
<line number="198" hits="
|
|
3998
|
-
<line number="
|
|
3999
|
-
<line number="204" hits="0" branch="
|
|
4000
|
-
<line number="205" hits="0" branch="
|
|
4001
|
-
<line number="
|
|
4002
|
-
<line number="211" hits="0" branch="
|
|
4003
|
-
<line number="
|
|
4004
|
-
<line number="
|
|
4005
|
-
<line number="
|
|
4006
|
-
<line number="227" hits="
|
|
4007
|
-
<line number="228" hits="0" branch="
|
|
4008
|
-
<line number="
|
|
4009
|
-
<line number="
|
|
4010
|
-
<line number="
|
|
4011
|
-
<line number="
|
|
4012
|
-
<line number="
|
|
4013
|
-
<line number="
|
|
4014
|
-
<line number="253" hits="0" branch="false"/>
|
|
4015
|
-
<line number="
|
|
4016
|
-
<line number="258" hits="0" branch="
|
|
4017
|
-
<line number="
|
|
4018
|
-
<line number="262" hits="0" branch="
|
|
4019
|
-
<line number="
|
|
4020
|
-
<line number="
|
|
4103
|
+
<line number="167" hits="0" branch="false"/>
|
|
4104
|
+
<line number="171" hits="0" branch="false"/>
|
|
4105
|
+
<line number="172" hits="2" branch="false"/>
|
|
4106
|
+
<line number="177" hits="0" branch="false"/>
|
|
4107
|
+
<line number="178" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4108
|
+
<line number="179" hits="0" branch="false"/>
|
|
4109
|
+
<line number="184" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4110
|
+
<line number="185" hits="0" branch="false"/>
|
|
4111
|
+
<line number="188" hits="0" branch="false"/>
|
|
4112
|
+
<line number="193" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
4113
|
+
<line number="194" hits="0" branch="false"/>
|
|
4114
|
+
<line number="198" hits="0" branch="false"/>
|
|
4115
|
+
<line number="199" hits="2" branch="false"/>
|
|
4116
|
+
<line number="204" hits="0" branch="false"/>
|
|
4117
|
+
<line number="205" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4118
|
+
<line number="206" hits="0" branch="false"/>
|
|
4119
|
+
<line number="211" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4120
|
+
<line number="212" hits="0" branch="false"/>
|
|
4121
|
+
<line number="217" hits="0" branch="false"/>
|
|
4122
|
+
<line number="223" hits="0" branch="false"/>
|
|
4123
|
+
<line number="227" hits="2" branch="false"/>
|
|
4124
|
+
<line number="228" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
4125
|
+
<line number="229" hits="0" branch="false"/>
|
|
4126
|
+
<line number="232" hits="0" branch="false"/>
|
|
4127
|
+
<line number="234" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
4128
|
+
<line number="240" hits="0" branch="false"/>
|
|
4129
|
+
<line number="243" hits="0" branch="false"/>
|
|
4130
|
+
<line number="247" hits="2" branch="false"/>
|
|
4131
|
+
<line number="253" hits="0" branch="false"/>
|
|
4132
|
+
<line number="254" hits="0" branch="false"/>
|
|
4133
|
+
<line number="258" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4134
|
+
<line number="259" hits="0" branch="false"/>
|
|
4135
|
+
<line number="262" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4136
|
+
<line number="263" hits="0" branch="false"/>
|
|
4137
|
+
<line number="266" hits="0" branch="false"/>
|
|
4021
4138
|
<line number="268" hits="0" branch="false"/>
|
|
4022
|
-
<line number="
|
|
4023
|
-
<line number="
|
|
4024
|
-
<line number="
|
|
4025
|
-
<line number="
|
|
4139
|
+
<line number="269" hits="0" branch="false"/>
|
|
4140
|
+
<line number="277" hits="0" branch="false"/>
|
|
4141
|
+
<line number="292" hits="0" branch="false"/>
|
|
4142
|
+
<line number="308" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4026
4143
|
<line number="310" hits="0" branch="false"/>
|
|
4027
4144
|
<line number="311" hits="0" branch="false"/>
|
|
4028
4145
|
<line number="312" hits="0" branch="false"/>
|
|
4029
|
-
<line number="313" hits="0" branch="
|
|
4030
|
-
<line number="314" hits="0" branch="
|
|
4031
|
-
<line number="
|
|
4032
|
-
<line number="
|
|
4146
|
+
<line number="313" hits="0" branch="false"/>
|
|
4147
|
+
<line number="314" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4148
|
+
<line number="315" hits="0" branch="false"/>
|
|
4149
|
+
<line number="317" hits="0" branch="false"/>
|
|
4033
4150
|
<line number="324" hits="0" branch="false"/>
|
|
4034
4151
|
<line number="325" hits="0" branch="false"/>
|
|
4035
|
-
<line number="
|
|
4036
|
-
<line number="335" hits="
|
|
4037
|
-
<line number="
|
|
4152
|
+
<line number="326" hits="0" branch="false"/>
|
|
4153
|
+
<line number="335" hits="2" branch="false"/>
|
|
4154
|
+
<line number="336" hits="0" branch="false"/>
|
|
4038
4155
|
<line number="354" hits="0" branch="false"/>
|
|
4039
|
-
<line number="
|
|
4040
|
-
<line number="
|
|
4041
|
-
<line number="368" hits="
|
|
4156
|
+
<line number="355" hits="0" branch="false"/>
|
|
4157
|
+
<line number="357" hits="0" branch="false"/>
|
|
4158
|
+
<line number="368" hits="2" branch="false"/>
|
|
4042
4159
|
<line number="369" hits="0" branch="false"/>
|
|
4043
4160
|
<line number="370" hits="0" branch="false"/>
|
|
4044
4161
|
<line number="371" hits="0" branch="false"/>
|
|
4045
|
-
<line number="
|
|
4046
|
-
<line number="374" hits="0" branch="
|
|
4047
|
-
<line number="
|
|
4162
|
+
<line number="372" hits="0" branch="false"/>
|
|
4163
|
+
<line number="374" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
4164
|
+
<line number="375" hits="0" branch="false"/>
|
|
4048
4165
|
<line number="379" hits="0" branch="false"/>
|
|
4049
|
-
<line number="
|
|
4050
|
-
<line number="383" hits="0" branch="
|
|
4051
|
-
<line number="
|
|
4166
|
+
<line number="380" hits="0" branch="false"/>
|
|
4167
|
+
<line number="383" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
4168
|
+
<line number="384" hits="0" branch="false"/>
|
|
4052
4169
|
<line number="388" hits="0" branch="false"/>
|
|
4053
|
-
<line number="
|
|
4170
|
+
<line number="389" hits="0" branch="false"/>
|
|
4054
4171
|
<line number="392" hits="0" branch="false"/>
|
|
4055
4172
|
<line number="393" hits="0" branch="false"/>
|
|
4056
|
-
<line number="
|
|
4057
|
-
<line number="
|
|
4058
|
-
<line number="399" hits="
|
|
4173
|
+
<line number="394" hits="0" branch="false"/>
|
|
4174
|
+
<line number="396" hits="0" branch="false"/>
|
|
4175
|
+
<line number="399" hits="2" branch="false"/>
|
|
4059
4176
|
<line number="400" hits="0" branch="false"/>
|
|
4060
4177
|
<line number="401" hits="0" branch="false"/>
|
|
4061
|
-
<line number="
|
|
4178
|
+
<line number="402" hits="0" branch="false"/>
|
|
4179
|
+
<line number="406" hits="2" branch="false"/>
|
|
4062
4180
|
<line number="413" hits="0" branch="false"/>
|
|
4063
|
-
<line number="
|
|
4064
|
-
<line number="
|
|
4065
|
-
<line number="
|
|
4066
|
-
<line number="
|
|
4067
|
-
<line number="
|
|
4068
|
-
<line number="
|
|
4069
|
-
<line number="
|
|
4070
|
-
<line number="
|
|
4071
|
-
<line number="
|
|
4072
|
-
<line number="
|
|
4181
|
+
<line number="414" hits="0" branch="false"/>
|
|
4182
|
+
<line number="415" hits="0" branch="false"/>
|
|
4183
|
+
<line number="416" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4184
|
+
<line number="418" hits="0" branch="false"/>
|
|
4185
|
+
<line number="419" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
4186
|
+
<line number="420" hits="0" branch="false"/>
|
|
4187
|
+
<line number="422" hits="0" branch="false"/>
|
|
4188
|
+
<line number="432" hits="0" branch="false"/>
|
|
4189
|
+
<line number="436" hits="0" branch="false"/>
|
|
4190
|
+
<line number="443" hits="0" branch="false"/>
|
|
4191
|
+
<line number="445" hits="0" branch="false"/>
|
|
4192
|
+
<line number="456" hits="0" branch="false"/>
|
|
4073
4193
|
<line number="457" hits="0" branch="false"/>
|
|
4074
|
-
<line number="
|
|
4075
|
-
<line number="
|
|
4076
|
-
<line number="
|
|
4077
|
-
<line number="
|
|
4078
|
-
<line number="
|
|
4079
|
-
<line number="
|
|
4080
|
-
<line number="
|
|
4081
|
-
<line number="
|
|
4194
|
+
<line number="463" hits="0" branch="false"/>
|
|
4195
|
+
<line number="465" hits="0" branch="false"/>
|
|
4196
|
+
<line number="467" hits="0" branch="false"/>
|
|
4197
|
+
<line number="469" hits="0" branch="false"/>
|
|
4198
|
+
<line number="479" hits="0" branch="false"/>
|
|
4199
|
+
<line number="483" hits="0" branch="false"/>
|
|
4200
|
+
<line number="490" hits="0" branch="false"/>
|
|
4201
|
+
<line number="493" hits="0" branch="false"/>
|
|
4082
4202
|
<line number="494" hits="0" branch="false"/>
|
|
4083
|
-
<line number="
|
|
4084
|
-
<line number="
|
|
4085
|
-
<line number="507" hits="0" branch="
|
|
4086
|
-
<line number="
|
|
4087
|
-
<line number="
|
|
4088
|
-
<line number="
|
|
4203
|
+
<line number="503" hits="0" branch="false"/>
|
|
4204
|
+
<line number="506" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
4205
|
+
<line number="507" hits="0" branch="false"/>
|
|
4206
|
+
<line number="512" hits="0" branch="false"/>
|
|
4207
|
+
<line number="518" hits="2" branch="false"/>
|
|
4208
|
+
<line number="523" hits="0" branch="false"/>
|
|
4089
4209
|
<line number="524" hits="0" branch="false"/>
|
|
4090
4210
|
<line number="525" hits="0" branch="false"/>
|
|
4091
4211
|
<line number="526" hits="0" branch="false"/>
|
|
4092
|
-
<line number="
|
|
4093
|
-
<line number="
|
|
4094
|
-
<line number="
|
|
4095
|
-
<line number="
|
|
4096
|
-
<line number="
|
|
4097
|
-
<line number="
|
|
4098
|
-
<line number="
|
|
4212
|
+
<line number="535" hits="0" branch="false"/>
|
|
4213
|
+
<line number="538" hits="0" branch="false"/>
|
|
4214
|
+
<line number="543" hits="0" branch="false"/>
|
|
4215
|
+
<line number="546" hits="0" branch="false"/>
|
|
4216
|
+
<line number="548" hits="0" branch="true" condition-coverage="0% (0/9)"/>
|
|
4217
|
+
<line number="553" hits="0" branch="false"/>
|
|
4218
|
+
<line number="556" hits="0" branch="false"/>
|
|
4099
4219
|
<line number="557" hits="0" branch="false"/>
|
|
4100
|
-
<line number="
|
|
4101
|
-
<line number="562" hits="0" branch="
|
|
4220
|
+
<line number="561" hits="0" branch="false"/>
|
|
4221
|
+
<line number="562" hits="0" branch="true" condition-coverage="0% (0/5)"/>
|
|
4102
4222
|
<line number="563" hits="0" branch="false"/>
|
|
4103
|
-
<line number="567" hits="0" branch="
|
|
4104
|
-
<line number="
|
|
4223
|
+
<line number="567" hits="0" branch="false"/>
|
|
4224
|
+
<line number="569" hits="0" branch="false"/>
|
|
4105
4225
|
<line number="572" hits="0" branch="false"/>
|
|
4106
|
-
<line number="
|
|
4107
|
-
<line number="577" hits="0" branch="false"/>
|
|
4226
|
+
<line number="576" hits="0" branch="false"/>
|
|
4108
4227
|
<line number="581" hits="0" branch="false"/>
|
|
4109
|
-
<line number="
|
|
4110
|
-
<line number="
|
|
4111
|
-
<line number="
|
|
4112
|
-
<line number="593" hits="2" branch="false"/>
|
|
4228
|
+
<line number="582" hits="0" branch="false"/>
|
|
4229
|
+
<line number="583" hits="0" branch="false"/>
|
|
4230
|
+
<line number="587" hits="2" branch="false"/>
|
|
4113
4231
|
</lines>
|
|
4114
4232
|
</class>
|
|
4115
4233
|
</classes>
|
|
@@ -4192,13 +4310,13 @@
|
|
|
4192
4310
|
</class>
|
|
4193
4311
|
</classes>
|
|
4194
4312
|
</package>
|
|
4195
|
-
<package name="src.Device.DeviceSelector" line-rate="0.
|
|
4313
|
+
<package name="src.Device.DeviceSelector" line-rate="0.8759" branch-rate="0.6956">
|
|
4196
4314
|
<classes>
|
|
4197
|
-
<class name="BasicDeviceInfo.tsx" filename="src/Device/DeviceSelector/BasicDeviceInfo.tsx" line-rate="0.
|
|
4315
|
+
<class name="BasicDeviceInfo.tsx" filename="src/Device/DeviceSelector/BasicDeviceInfo.tsx" line-rate="0.7567" branch-rate="0.5909">
|
|
4198
4316
|
<methods>
|
|
4199
|
-
<method name="(anonymous_5)" hits="
|
|
4317
|
+
<method name="(anonymous_5)" hits="30" signature="()V">
|
|
4200
4318
|
<lines>
|
|
4201
|
-
<line number="28" hits="
|
|
4319
|
+
<line number="28" hits="30"/>
|
|
4202
4320
|
</lines>
|
|
4203
4321
|
</method>
|
|
4204
4322
|
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
@@ -4206,24 +4324,24 @@
|
|
|
4206
4324
|
<line number="30" hits="0"/>
|
|
4207
4325
|
</lines>
|
|
4208
4326
|
</method>
|
|
4209
|
-
<method name="(anonymous_7)" hits="
|
|
4327
|
+
<method name="(anonymous_7)" hits="30" signature="()V">
|
|
4210
4328
|
<lines>
|
|
4211
|
-
<line number="
|
|
4329
|
+
<line number="54" hits="30"/>
|
|
4212
4330
|
</lines>
|
|
4213
4331
|
</method>
|
|
4214
|
-
<method name="(anonymous_8)" hits="
|
|
4332
|
+
<method name="(anonymous_8)" hits="30" signature="()V">
|
|
4215
4333
|
<lines>
|
|
4216
|
-
<line number="
|
|
4334
|
+
<line number="61" hits="30"/>
|
|
4217
4335
|
</lines>
|
|
4218
4336
|
</method>
|
|
4219
|
-
<method name="(anonymous_9)" hits="
|
|
4337
|
+
<method name="(anonymous_9)" hits="45" signature="()V">
|
|
4220
4338
|
<lines>
|
|
4221
|
-
<line number="
|
|
4339
|
+
<line number="72" hits="45"/>
|
|
4222
4340
|
</lines>
|
|
4223
4341
|
</method>
|
|
4224
|
-
<method name="(anonymous_10)" hits="
|
|
4342
|
+
<method name="(anonymous_10)" hits="22" signature="()V">
|
|
4225
4343
|
<lines>
|
|
4226
|
-
<line number="
|
|
4344
|
+
<line number="88" hits="22"/>
|
|
4227
4345
|
</lines>
|
|
4228
4346
|
</method>
|
|
4229
4347
|
</methods>
|
|
@@ -4237,40 +4355,41 @@
|
|
|
4237
4355
|
<line number="18" hits="1" branch="false"/>
|
|
4238
4356
|
<line number="20" hits="1" branch="false"/>
|
|
4239
4357
|
<line number="28" hits="1" branch="false"/>
|
|
4240
|
-
<line number="29" hits="
|
|
4241
|
-
<line number="30" hits="
|
|
4242
|
-
<line number="
|
|
4243
|
-
<line number="34" hits="0" branch="
|
|
4244
|
-
<line number="
|
|
4358
|
+
<line number="29" hits="30" branch="false"/>
|
|
4359
|
+
<line number="30" hits="30" branch="false"/>
|
|
4360
|
+
<line number="31" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
4361
|
+
<line number="34" hits="0" branch="false"/>
|
|
4362
|
+
<line number="36" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4245
4363
|
<line number="37" hits="0" branch="false"/>
|
|
4246
|
-
<line number="
|
|
4247
|
-
<line number="43" hits="
|
|
4364
|
+
<line number="39" hits="0" branch="false"/>
|
|
4365
|
+
<line number="43" hits="30" branch="true" condition-coverage="0% (0/2)"/>
|
|
4248
4366
|
<line number="45" hits="0" branch="false"/>
|
|
4249
|
-
<line number="
|
|
4250
|
-
<line number="
|
|
4251
|
-
<line number="
|
|
4252
|
-
<line number="
|
|
4253
|
-
<line number="
|
|
4254
|
-
<line number="
|
|
4255
|
-
<line number="
|
|
4256
|
-
<line number="
|
|
4257
|
-
<line number="
|
|
4258
|
-
<line number="
|
|
4259
|
-
<line number="
|
|
4260
|
-
<line number="
|
|
4261
|
-
<line number="
|
|
4262
|
-
<line number="
|
|
4263
|
-
<line number="
|
|
4264
|
-
<line number="
|
|
4265
|
-
<line number="
|
|
4266
|
-
<line number="
|
|
4367
|
+
<line number="47" hits="0" branch="false"/>
|
|
4368
|
+
<line number="54" hits="30" branch="false"/>
|
|
4369
|
+
<line number="61" hits="1" branch="false"/>
|
|
4370
|
+
<line number="62" hits="30" branch="false"/>
|
|
4371
|
+
<line number="72" hits="30" branch="false"/>
|
|
4372
|
+
<line number="78" hits="45" branch="false"/>
|
|
4373
|
+
<line number="81" hits="45" branch="false"/>
|
|
4374
|
+
<line number="82" hits="45" branch="false"/>
|
|
4375
|
+
<line number="83" hits="45" branch="false"/>
|
|
4376
|
+
<line number="85" hits="45" branch="true" condition-coverage="100% (2/2)"/>
|
|
4377
|
+
<line number="88" hits="45" branch="false"/>
|
|
4378
|
+
<line number="89" hits="22" branch="true" condition-coverage="100% (2/2)"/>
|
|
4379
|
+
<line number="90" hits="16" branch="false"/>
|
|
4380
|
+
<line number="91" hits="6" branch="true" condition-coverage="50% (2/4)"/>
|
|
4381
|
+
<line number="92" hits="0" branch="false"/>
|
|
4382
|
+
<line number="93" hits="6" branch="true" condition-coverage="50% (2/4)"/>
|
|
4383
|
+
<line number="94" hits="0" branch="false"/>
|
|
4384
|
+
<line number="96" hits="6" branch="false"/>
|
|
4385
|
+
<line number="105" hits="45" branch="false"/>
|
|
4267
4386
|
</lines>
|
|
4268
4387
|
</class>
|
|
4269
4388
|
<class name="DeviceIcon.tsx" filename="src/Device/DeviceSelector/DeviceIcon.tsx" line-rate="1" branch-rate="0.5">
|
|
4270
4389
|
<methods>
|
|
4271
|
-
<method name="(anonymous_2)" hits="
|
|
4390
|
+
<method name="(anonymous_2)" hits="30" signature="()V">
|
|
4272
4391
|
<lines>
|
|
4273
|
-
<line number="14" hits="
|
|
4392
|
+
<line number="14" hits="30"/>
|
|
4274
4393
|
</lines>
|
|
4275
4394
|
</method>
|
|
4276
4395
|
</methods>
|
|
@@ -4279,130 +4398,141 @@
|
|
|
4279
4398
|
<line number="9" hits="1" branch="false"/>
|
|
4280
4399
|
<line number="12" hits="1" branch="false"/>
|
|
4281
4400
|
<line number="14" hits="1" branch="false"/>
|
|
4282
|
-
<line number="15" hits="
|
|
4283
|
-
<line number="16" hits="
|
|
4284
|
-
<line number="27" hits="
|
|
4401
|
+
<line number="15" hits="30" branch="false"/>
|
|
4402
|
+
<line number="16" hits="30" branch="false"/>
|
|
4403
|
+
<line number="27" hits="45" branch="false"/>
|
|
4285
4404
|
</lines>
|
|
4286
4405
|
</class>
|
|
4287
|
-
<class name="DeviceSelector.tsx" filename="src/Device/DeviceSelector/DeviceSelector.tsx" line-rate="0.
|
|
4406
|
+
<class name="DeviceSelector.tsx" filename="src/Device/DeviceSelector/DeviceSelector.tsx" line-rate="0.8983" branch-rate="0.7726999999999999">
|
|
4288
4407
|
<methods>
|
|
4289
4408
|
<method name="(anonymous_5)" hits="10" signature="()V">
|
|
4290
4409
|
<lines>
|
|
4291
|
-
<line number="
|
|
4410
|
+
<line number="45" hits="10"/>
|
|
4292
4411
|
</lines>
|
|
4293
4412
|
</method>
|
|
4294
|
-
<method name="(anonymous_6)" hits="
|
|
4413
|
+
<method name="(anonymous_6)" hits="27" signature="()V">
|
|
4295
4414
|
<lines>
|
|
4296
|
-
<line number="
|
|
4415
|
+
<line number="46" hits="27"/>
|
|
4297
4416
|
</lines>
|
|
4298
4417
|
</method>
|
|
4299
4418
|
<method name="(anonymous_7)" hits="2" signature="()V">
|
|
4300
4419
|
<lines>
|
|
4301
|
-
<line number="
|
|
4420
|
+
<line number="64" hits="2"/>
|
|
4302
4421
|
</lines>
|
|
4303
4422
|
</method>
|
|
4304
4423
|
<method name="(anonymous_8)" hits="6" signature="()V">
|
|
4305
4424
|
<lines>
|
|
4306
|
-
<line number="
|
|
4425
|
+
<line number="77" hits="6"/>
|
|
4307
4426
|
</lines>
|
|
4308
4427
|
</method>
|
|
4309
4428
|
<method name="(anonymous_9)" hits="11" signature="()V">
|
|
4310
4429
|
<lines>
|
|
4311
|
-
<line number="
|
|
4430
|
+
<line number="123" hits="11"/>
|
|
4312
4431
|
</lines>
|
|
4313
4432
|
</method>
|
|
4314
4433
|
<method name="(anonymous_10)" hits="8" signature="()V">
|
|
4315
4434
|
<lines>
|
|
4316
|
-
<line number="
|
|
4435
|
+
<line number="142" hits="8"/>
|
|
4317
4436
|
</lines>
|
|
4318
4437
|
</method>
|
|
4319
4438
|
<method name="(anonymous_11)" hits="11" signature="()V">
|
|
4320
4439
|
<lines>
|
|
4321
|
-
<line number="
|
|
4440
|
+
<line number="145" hits="11"/>
|
|
4322
4441
|
</lines>
|
|
4323
4442
|
</method>
|
|
4324
4443
|
<method name="(anonymous_12)" hits="0" signature="()V">
|
|
4325
4444
|
<lines>
|
|
4326
|
-
<line number="
|
|
4445
|
+
<line number="154" hits="0"/>
|
|
4327
4446
|
</lines>
|
|
4328
4447
|
</method>
|
|
4329
4448
|
<method name="(anonymous_13)" hits="6" signature="()V">
|
|
4330
4449
|
<lines>
|
|
4331
|
-
<line number="
|
|
4450
|
+
<line number="172" hits="6"/>
|
|
4332
4451
|
</lines>
|
|
4333
4452
|
</method>
|
|
4334
4453
|
</methods>
|
|
4335
4454
|
<lines>
|
|
4336
4455
|
<line number="7" hits="1" branch="false"/>
|
|
4337
4456
|
<line number="8" hits="1" branch="false"/>
|
|
4338
|
-
<line number="
|
|
4339
|
-
<line number="
|
|
4340
|
-
<line number="
|
|
4457
|
+
<line number="10" hits="1" branch="false"/>
|
|
4458
|
+
<line number="12" hits="1" branch="false"/>
|
|
4459
|
+
<line number="13" hits="1" branch="false"/>
|
|
4341
4460
|
<line number="18" hits="1" branch="false"/>
|
|
4342
4461
|
<line number="19" hits="1" branch="false"/>
|
|
4343
|
-
<line number="
|
|
4344
|
-
<line number="
|
|
4345
|
-
<line number="28" hits="1" branch="false"/>
|
|
4462
|
+
<line number="20" hits="1" branch="false"/>
|
|
4463
|
+
<line number="21" hits="1" branch="false"/>
|
|
4346
4464
|
<line number="29" hits="1" branch="false"/>
|
|
4347
|
-
<line number="
|
|
4348
|
-
<line number="
|
|
4349
|
-
<line number="
|
|
4350
|
-
<line number="
|
|
4351
|
-
<line number="
|
|
4352
|
-
<line number="
|
|
4353
|
-
<line number="
|
|
4354
|
-
<line number="59" hits="
|
|
4355
|
-
<line number="
|
|
4356
|
-
<line number="
|
|
4357
|
-
<line number="
|
|
4358
|
-
<line number="64" hits="
|
|
4465
|
+
<line number="30" hits="1" branch="false"/>
|
|
4466
|
+
<line number="31" hits="1" branch="false"/>
|
|
4467
|
+
<line number="32" hits="1" branch="false"/>
|
|
4468
|
+
<line number="45" hits="1" branch="false"/>
|
|
4469
|
+
<line number="46" hits="11" branch="false"/>
|
|
4470
|
+
<line number="56" hits="27" branch="false"/>
|
|
4471
|
+
<line number="57" hits="27" branch="false"/>
|
|
4472
|
+
<line number="59" hits="27" branch="false"/>
|
|
4473
|
+
<line number="60" hits="27" branch="false"/>
|
|
4474
|
+
<line number="61" hits="27" branch="false"/>
|
|
4475
|
+
<line number="62" hits="27" branch="true" condition-coverage="100% (2/2)"/>
|
|
4476
|
+
<line number="64" hits="27" branch="false"/>
|
|
4359
4477
|
<line number="65" hits="2" branch="false"/>
|
|
4360
|
-
<line number="
|
|
4361
|
-
<line number="
|
|
4362
|
-
<line number="
|
|
4363
|
-
<line number="
|
|
4364
|
-
<line number="76" hits="
|
|
4365
|
-
<line number="
|
|
4366
|
-
<line number="
|
|
4367
|
-
<line number="
|
|
4368
|
-
<line number="
|
|
4369
|
-
<line number="
|
|
4370
|
-
<line number="
|
|
4371
|
-
<line number="
|
|
4372
|
-
<line number="
|
|
4373
|
-
<line number="
|
|
4374
|
-
<line number="
|
|
4375
|
-
<line number="
|
|
4376
|
-
<line number="
|
|
4377
|
-
<line number="
|
|
4378
|
-
<line number="
|
|
4379
|
-
<line number="
|
|
4380
|
-
<line number="
|
|
4381
|
-
<line number="
|
|
4478
|
+
<line number="66" hits="2" branch="false"/>
|
|
4479
|
+
<line number="67" hits="2" branch="false"/>
|
|
4480
|
+
<line number="68" hits="2" branch="false"/>
|
|
4481
|
+
<line number="71" hits="27" branch="false"/>
|
|
4482
|
+
<line number="76" hits="27" branch="false"/>
|
|
4483
|
+
<line number="78" hits="6" branch="false"/>
|
|
4484
|
+
<line number="79" hits="6" branch="false"/>
|
|
4485
|
+
<line number="80" hits="6" branch="false"/>
|
|
4486
|
+
<line number="81" hits="6" branch="false"/>
|
|
4487
|
+
<line number="82" hits="6" branch="false"/>
|
|
4488
|
+
<line number="84" hits="6" branch="true" condition-coverage="75% (3/4)"/>
|
|
4489
|
+
<line number="85" hits="6" branch="false"/>
|
|
4490
|
+
<line number="86" hits="6" branch="false"/>
|
|
4491
|
+
<line number="92" hits="6" branch="false"/>
|
|
4492
|
+
<line number="93" hits="6" branch="false"/>
|
|
4493
|
+
<line number="95" hits="6" branch="true" condition-coverage="100% (1/1)"/>
|
|
4494
|
+
<line number="96" hits="4" branch="true" condition-coverage="50% (1/2)"/>
|
|
4495
|
+
<line number="97" hits="4" branch="false"/>
|
|
4496
|
+
<line number="107" hits="0" branch="false"/>
|
|
4497
|
+
<line number="110" hits="0" branch="false"/>
|
|
4498
|
+
<line number="123" hits="27" branch="false"/>
|
|
4499
|
+
<line number="124" hits="11" branch="false"/>
|
|
4500
|
+
<line number="142" hits="27" branch="false"/>
|
|
4501
|
+
<line number="143" hits="8" branch="false"/>
|
|
4502
|
+
<line number="145" hits="27" branch="false"/>
|
|
4503
|
+
<line number="146" hits="11" branch="false"/>
|
|
4504
|
+
<line number="147" hits="11" branch="false"/>
|
|
4505
|
+
<line number="150" hits="27" branch="false"/>
|
|
4382
4506
|
<line number="154" hits="0" branch="false"/>
|
|
4383
|
-
<line number="157" hits="
|
|
4507
|
+
<line number="157" hits="27" branch="false"/>
|
|
4508
|
+
<line number="173" hits="6" branch="true" condition-coverage="60% (3/5)"/>
|
|
4509
|
+
<line number="174" hits="0" branch="false"/>
|
|
4510
|
+
<line number="175" hits="0" branch="false"/>
|
|
4511
|
+
<line number="178" hits="6" branch="true" condition-coverage="0% (0/1)"/>
|
|
4512
|
+
<line number="179" hits="0" branch="false"/>
|
|
4513
|
+
<line number="182" hits="6" branch="false"/>
|
|
4384
4514
|
</lines>
|
|
4385
4515
|
</class>
|
|
4386
|
-
<class name="Favorite.tsx" filename="src/Device/DeviceSelector/Favorite.tsx" line-rate="0.
|
|
4516
|
+
<class name="Favorite.tsx" filename="src/Device/DeviceSelector/Favorite.tsx" line-rate="0.8665999999999999" branch-rate="0.6">
|
|
4387
4517
|
<methods>
|
|
4388
4518
|
<method name="(anonymous_4)" hits="1" signature="()V">
|
|
4389
4519
|
<lines>
|
|
4390
|
-
<line number="
|
|
4520
|
+
<line number="14" hits="1"/>
|
|
4391
4521
|
</lines>
|
|
4392
4522
|
</method>
|
|
4393
4523
|
<method name="(anonymous_5)" hits="0" signature="()V">
|
|
4394
4524
|
<lines>
|
|
4395
|
-
<line number="
|
|
4525
|
+
<line number="17" hits="0"/>
|
|
4396
4526
|
</lines>
|
|
4397
4527
|
</method>
|
|
4398
|
-
<method name="(anonymous_6)" hits="
|
|
4528
|
+
<method name="(anonymous_6)" hits="24" signature="()V">
|
|
4399
4529
|
<lines>
|
|
4400
|
-
<line number="
|
|
4530
|
+
<line number="33" hits="24"/>
|
|
4401
4531
|
</lines>
|
|
4402
4532
|
</method>
|
|
4403
4533
|
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
4404
4534
|
<lines>
|
|
4405
|
-
<line number="
|
|
4535
|
+
<line number="36" hits="0"/>
|
|
4406
4536
|
</lines>
|
|
4407
4537
|
</method>
|
|
4408
4538
|
</methods>
|
|
@@ -4411,16 +4541,17 @@
|
|
|
4411
4541
|
<line number="8" hits="1" branch="false"/>
|
|
4412
4542
|
<line number="10" hits="1" branch="false"/>
|
|
4413
4543
|
<line number="11" hits="1" branch="false"/>
|
|
4414
|
-
<line number="
|
|
4544
|
+
<line number="12" hits="1" branch="false"/>
|
|
4545
|
+
<line number="14" hits="1" branch="false"/>
|
|
4415
4546
|
<line number="15" hits="1" branch="false"/>
|
|
4416
|
-
<line number="
|
|
4417
|
-
<line number="18" hits="
|
|
4418
|
-
<line number="
|
|
4419
|
-
<line number="
|
|
4420
|
-
<line number="34" hits="
|
|
4421
|
-
<line number="
|
|
4422
|
-
<line number="37" hits="
|
|
4423
|
-
<line number="
|
|
4547
|
+
<line number="17" hits="1" branch="false"/>
|
|
4548
|
+
<line number="18" hits="0" branch="false"/>
|
|
4549
|
+
<line number="21" hits="1" branch="false"/>
|
|
4550
|
+
<line number="33" hits="24" branch="false"/>
|
|
4551
|
+
<line number="34" hits="24" branch="false"/>
|
|
4552
|
+
<line number="36" hits="24" branch="false"/>
|
|
4553
|
+
<line number="37" hits="0" branch="false"/>
|
|
4554
|
+
<line number="40" hits="24" branch="true" condition-coverage="50% (1/2)"/>
|
|
4424
4555
|
</lines>
|
|
4425
4556
|
</class>
|
|
4426
4557
|
<class name="SelectDevice.tsx" filename="src/Device/DeviceSelector/SelectDevice.tsx" line-rate="1" branch-rate="1">
|
|
@@ -4437,9 +4568,9 @@
|
|
|
4437
4568
|
</class>
|
|
4438
4569
|
<class name="SelectedDevice.tsx" filename="src/Device/DeviceSelector/SelectedDevice.tsx" line-rate="1" branch-rate="0.7777">
|
|
4439
4570
|
<methods>
|
|
4440
|
-
<method name="(anonymous_3)" hits="
|
|
4571
|
+
<method name="(anonymous_3)" hits="6" signature="()V">
|
|
4441
4572
|
<lines>
|
|
4442
|
-
<line number="34" hits="
|
|
4573
|
+
<line number="34" hits="6"/>
|
|
4443
4574
|
</lines>
|
|
4444
4575
|
</method>
|
|
4445
4576
|
</methods>
|
|
@@ -4451,33 +4582,33 @@
|
|
|
4451
4582
|
<line number="16" hits="1" branch="false"/>
|
|
4452
4583
|
<line number="17" hits="1" branch="false"/>
|
|
4453
4584
|
<line number="19" hits="1" branch="false"/>
|
|
4454
|
-
<line number="34" hits="
|
|
4455
|
-
<line number="41" hits="
|
|
4456
|
-
<line number="42" hits="
|
|
4457
|
-
<line number="43" hits="
|
|
4458
|
-
<line number="44" hits="
|
|
4459
|
-
<line number="45" hits="
|
|
4585
|
+
<line number="34" hits="6" branch="false"/>
|
|
4586
|
+
<line number="41" hits="6" branch="false"/>
|
|
4587
|
+
<line number="42" hits="6" branch="false"/>
|
|
4588
|
+
<line number="43" hits="6" branch="false"/>
|
|
4589
|
+
<line number="44" hits="6" branch="false"/>
|
|
4590
|
+
<line number="45" hits="6" branch="true" condition-coverage="75% (3/4)"/>
|
|
4460
4591
|
</lines>
|
|
4461
4592
|
</class>
|
|
4462
4593
|
</classes>
|
|
4463
4594
|
</package>
|
|
4464
|
-
<package name="src.Device.DeviceSelector.DeviceList" line-rate="0.
|
|
4595
|
+
<package name="src.Device.DeviceSelector.DeviceList" line-rate="0.8256" branch-rate="0.5937">
|
|
4465
4596
|
<classes>
|
|
4466
4597
|
<class name="AnimatedList.tsx" filename="src/Device/DeviceSelector/DeviceList/AnimatedList.tsx" line-rate="0.6315" branch-rate="1">
|
|
4467
4598
|
<methods>
|
|
4468
|
-
<method name="(anonymous_4)" hits="
|
|
4599
|
+
<method name="(anonymous_4)" hits="27" signature="()V">
|
|
4469
4600
|
<lines>
|
|
4470
|
-
<line number="12" hits="
|
|
4601
|
+
<line number="12" hits="27"/>
|
|
4471
4602
|
</lines>
|
|
4472
4603
|
</method>
|
|
4473
|
-
<method name="(anonymous_5)" hits="
|
|
4604
|
+
<method name="(anonymous_5)" hits="23" signature="()V">
|
|
4474
4605
|
<lines>
|
|
4475
|
-
<line number="13" hits="
|
|
4606
|
+
<line number="13" hits="23"/>
|
|
4476
4607
|
</lines>
|
|
4477
4608
|
</method>
|
|
4478
|
-
<method name="(anonymous_6)" hits="
|
|
4609
|
+
<method name="(anonymous_6)" hits="27" signature="()V">
|
|
4479
4610
|
<lines>
|
|
4480
|
-
<line number="18" hits="
|
|
4611
|
+
<line number="18" hits="27"/>
|
|
4481
4612
|
</lines>
|
|
4482
4613
|
</method>
|
|
4483
4614
|
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
@@ -4505,9 +4636,9 @@
|
|
|
4505
4636
|
<line number="50" hits="0"/>
|
|
4506
4637
|
</lines>
|
|
4507
4638
|
</method>
|
|
4508
|
-
<method name="(anonymous_12)" hits="
|
|
4639
|
+
<method name="(anonymous_12)" hits="23" signature="()V">
|
|
4509
4640
|
<lines>
|
|
4510
|
-
<line number="58" hits="
|
|
4641
|
+
<line number="58" hits="23"/>
|
|
4511
4642
|
</lines>
|
|
4512
4643
|
</method>
|
|
4513
4644
|
</methods>
|
|
@@ -4515,10 +4646,10 @@
|
|
|
4515
4646
|
<line number="7" hits="1" branch="false"/>
|
|
4516
4647
|
<line number="8" hits="1" branch="false"/>
|
|
4517
4648
|
<line number="12" hits="1" branch="false"/>
|
|
4518
|
-
<line number="13" hits="
|
|
4519
|
-
<line number="15" hits="
|
|
4649
|
+
<line number="13" hits="27" branch="false"/>
|
|
4650
|
+
<line number="15" hits="27" branch="false"/>
|
|
4520
4651
|
<line number="18" hits="1" branch="false"/>
|
|
4521
|
-
<line number="19" hits="
|
|
4652
|
+
<line number="19" hits="27" branch="false"/>
|
|
4522
4653
|
<line number="26" hits="1" branch="false"/>
|
|
4523
4654
|
<line number="27" hits="0" branch="false"/>
|
|
4524
4655
|
<line number="34" hits="0" branch="false"/>
|
|
@@ -4528,9 +4659,9 @@
|
|
|
4528
4659
|
<line number="47" hits="0" branch="false"/>
|
|
4529
4660
|
<line number="48" hits="0" branch="false"/>
|
|
4530
4661
|
<line number="51" hits="0" branch="false"/>
|
|
4531
|
-
<line number="55" hits="
|
|
4662
|
+
<line number="55" hits="23" branch="false"/>
|
|
4532
4663
|
<line number="58" hits="1" branch="false"/>
|
|
4533
|
-
<line number="59" hits="
|
|
4664
|
+
<line number="59" hits="23" branch="false"/>
|
|
4534
4665
|
</lines>
|
|
4535
4666
|
</class>
|
|
4536
4667
|
<class name="BrokenDevice.tsx" filename="src/Device/DeviceSelector/DeviceList/BrokenDevice.tsx" line-rate="0.7" branch-rate="1">
|
|
@@ -4559,26 +4690,26 @@
|
|
|
4559
4690
|
<line number="23" hits="0" branch="false"/>
|
|
4560
4691
|
</lines>
|
|
4561
4692
|
</class>
|
|
4562
|
-
<class name="Device.tsx" filename="src/Device/DeviceSelector/DeviceList/Device.tsx" line-rate="0.
|
|
4693
|
+
<class name="Device.tsx" filename="src/Device/DeviceSelector/DeviceList/Device.tsx" line-rate="0.875" branch-rate="0.7058">
|
|
4563
4694
|
<methods>
|
|
4564
|
-
<method name="(anonymous_6)" hits="
|
|
4695
|
+
<method name="(anonymous_6)" hits="24" signature="()V">
|
|
4565
4696
|
<lines>
|
|
4566
|
-
<line number="
|
|
4697
|
+
<line number="40" hits="24"/>
|
|
4567
4698
|
</lines>
|
|
4568
4699
|
</method>
|
|
4569
4700
|
<method name="(anonymous_7)" hits="1" signature="()V">
|
|
4570
4701
|
<lines>
|
|
4571
|
-
<line number="
|
|
4702
|
+
<line number="42" hits="1"/>
|
|
4572
4703
|
</lines>
|
|
4573
4704
|
</method>
|
|
4574
4705
|
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
4575
4706
|
<lines>
|
|
4576
|
-
<line number="
|
|
4707
|
+
<line number="45" hits="0"/>
|
|
4577
4708
|
</lines>
|
|
4578
4709
|
</method>
|
|
4579
4710
|
<method name="(anonymous_9)" hits="6" signature="()V">
|
|
4580
4711
|
<lines>
|
|
4581
|
-
<line number="
|
|
4712
|
+
<line number="60" hits="6"/>
|
|
4582
4713
|
</lines>
|
|
4583
4714
|
</method>
|
|
4584
4715
|
</methods>
|
|
@@ -4590,68 +4721,67 @@
|
|
|
4590
4721
|
<line number="13" hits="1" branch="false"/>
|
|
4591
4722
|
<line number="14" hits="1" branch="false"/>
|
|
4592
4723
|
<line number="15" hits="1" branch="false"/>
|
|
4593
|
-
<line number="17" hits="1" branch="false"/>
|
|
4594
|
-
<line number="39" hits="22" branch="false"/>
|
|
4595
4724
|
<line number="40" hits="23" branch="false"/>
|
|
4596
|
-
<line number="41" hits="
|
|
4597
|
-
<line number="
|
|
4598
|
-
<line number="44" hits="
|
|
4599
|
-
<line number="45" hits="
|
|
4600
|
-
<line number="
|
|
4601
|
-
<line number="49" hits="
|
|
4602
|
-
<line number="
|
|
4725
|
+
<line number="41" hits="24" branch="false"/>
|
|
4726
|
+
<line number="42" hits="24" branch="false"/>
|
|
4727
|
+
<line number="44" hits="24" branch="false"/>
|
|
4728
|
+
<line number="45" hits="24" branch="false"/>
|
|
4729
|
+
<line number="46" hits="0" branch="true" condition-coverage="0% (0/4)"/>
|
|
4730
|
+
<line number="49" hits="24" branch="true" condition-coverage="66.66666666666666% (2/3)"/>
|
|
4731
|
+
<line number="50" hits="0" branch="false"/>
|
|
4732
|
+
<line number="60" hits="6" branch="false"/>
|
|
4603
4733
|
</lines>
|
|
4604
4734
|
</class>
|
|
4605
|
-
<class name="DeviceList.tsx" filename="src/Device/DeviceSelector/DeviceList/DeviceList.tsx" line-rate="0.
|
|
4735
|
+
<class name="DeviceList.tsx" filename="src/Device/DeviceSelector/DeviceList/DeviceList.tsx" line-rate="0.8571" branch-rate="0.5151">
|
|
4606
4736
|
<methods>
|
|
4607
4737
|
<method name="(anonymous_5)" hits="4" signature="()V">
|
|
4608
4738
|
<lines>
|
|
4609
|
-
<line number="
|
|
4739
|
+
<line number="25" hits="4"/>
|
|
4610
4740
|
</lines>
|
|
4611
4741
|
</method>
|
|
4612
4742
|
<method name="(anonymous_6)" hits="0" signature="()V">
|
|
4613
4743
|
<lines>
|
|
4614
|
-
<line number="
|
|
4744
|
+
<line number="39" hits="0"/>
|
|
4615
4745
|
</lines>
|
|
4616
4746
|
</method>
|
|
4617
4747
|
<method name="(anonymous_7)" hits="8" signature="()V">
|
|
4618
4748
|
<lines>
|
|
4619
|
-
<line number="
|
|
4749
|
+
<line number="43" hits="8"/>
|
|
4620
4750
|
</lines>
|
|
4621
4751
|
</method>
|
|
4622
4752
|
<method name="(anonymous_8)" hits="11" signature="()V">
|
|
4623
4753
|
<lines>
|
|
4624
|
-
<line number="
|
|
4754
|
+
<line number="45" hits="11"/>
|
|
4625
4755
|
</lines>
|
|
4626
4756
|
</method>
|
|
4627
4757
|
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
4628
4758
|
<lines>
|
|
4629
|
-
<line number="
|
|
4759
|
+
<line number="46" hits="0"/>
|
|
4630
4760
|
</lines>
|
|
4631
4761
|
</method>
|
|
4632
|
-
<method name="(anonymous_10)" hits="
|
|
4762
|
+
<method name="(anonymous_10)" hits="27" signature="()V">
|
|
4633
4763
|
<lines>
|
|
4634
|
-
<line number="
|
|
4764
|
+
<line number="59" hits="27"/>
|
|
4635
4765
|
</lines>
|
|
4636
4766
|
</method>
|
|
4637
4767
|
<method name="(anonymous_11)" hits="11" signature="()V">
|
|
4638
4768
|
<lines>
|
|
4639
|
-
<line number="
|
|
4769
|
+
<line number="70" hits="11"/>
|
|
4640
4770
|
</lines>
|
|
4641
4771
|
</method>
|
|
4642
4772
|
<method name="(anonymous_12)" hits="11" signature="()V">
|
|
4643
4773
|
<lines>
|
|
4644
|
-
<line number="
|
|
4774
|
+
<line number="75" hits="11"/>
|
|
4645
4775
|
</lines>
|
|
4646
4776
|
</method>
|
|
4647
4777
|
<method name="(anonymous_13)" hits="0" signature="()V">
|
|
4648
4778
|
<lines>
|
|
4649
|
-
<line number="
|
|
4779
|
+
<line number="99" hits="0"/>
|
|
4650
4780
|
</lines>
|
|
4651
4781
|
</method>
|
|
4652
|
-
<method name="(anonymous_14)" hits="
|
|
4782
|
+
<method name="(anonymous_14)" hits="23" signature="()V">
|
|
4653
4783
|
<lines>
|
|
4654
|
-
<line number="
|
|
4784
|
+
<line number="109" hits="23"/>
|
|
4655
4785
|
</lines>
|
|
4656
4786
|
</method>
|
|
4657
4787
|
</methods>
|
|
@@ -4662,37 +4792,44 @@
|
|
|
4662
4792
|
<line number="11" hits="1" branch="false"/>
|
|
4663
4793
|
<line number="12" hits="1" branch="false"/>
|
|
4664
4794
|
<line number="13" hits="1" branch="false"/>
|
|
4665
|
-
<line number="
|
|
4666
|
-
<line number="15" hits="1" branch="false"/>
|
|
4667
|
-
<line number="16" hits="1" branch="false"/>
|
|
4668
|
-
<line number="17" hits="1" branch="false"/>
|
|
4795
|
+
<line number="18" hits="1" branch="false"/>
|
|
4669
4796
|
<line number="19" hits="1" branch="false"/>
|
|
4797
|
+
<line number="20" hits="1" branch="false"/>
|
|
4670
4798
|
<line number="21" hits="1" branch="false"/>
|
|
4671
|
-
<line number="
|
|
4672
|
-
<line number="
|
|
4673
|
-
<line number="
|
|
4674
|
-
<line number="39" hits="
|
|
4675
|
-
<line number="
|
|
4676
|
-
<line number="
|
|
4677
|
-
<line number="
|
|
4678
|
-
<line number="
|
|
4679
|
-
<line number="47" hits="0" branch="true" condition-coverage="0% (0/
|
|
4680
|
-
<line number="
|
|
4681
|
-
<line number="
|
|
4682
|
-
<line number="
|
|
4683
|
-
<line number="
|
|
4684
|
-
<line number="
|
|
4685
|
-
<line number="
|
|
4686
|
-
<line number="
|
|
4799
|
+
<line number="23" hits="1" branch="false"/>
|
|
4800
|
+
<line number="25" hits="1" branch="false"/>
|
|
4801
|
+
<line number="26" hits="4" branch="false"/>
|
|
4802
|
+
<line number="39" hits="1" branch="false"/>
|
|
4803
|
+
<line number="40" hits="0" branch="false"/>
|
|
4804
|
+
<line number="43" hits="8" branch="false"/>
|
|
4805
|
+
<line number="45" hits="1" branch="false"/>
|
|
4806
|
+
<line number="46" hits="11" branch="false"/>
|
|
4807
|
+
<line number="47" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
4808
|
+
<line number="48" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4809
|
+
<line number="51" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4810
|
+
<line number="59" hits="1" branch="false"/>
|
|
4811
|
+
<line number="64" hits="27" branch="false"/>
|
|
4812
|
+
<line number="65" hits="27" branch="false"/>
|
|
4813
|
+
<line number="66" hits="27" branch="false"/>
|
|
4814
|
+
<line number="67" hits="27" branch="false"/>
|
|
4815
|
+
<line number="69" hits="27" branch="false"/>
|
|
4687
4816
|
<line number="70" hits="11" branch="false"/>
|
|
4688
|
-
<line number="74" hits="
|
|
4689
|
-
<line number="
|
|
4690
|
-
<line number="
|
|
4691
|
-
<line number="
|
|
4817
|
+
<line number="74" hits="27" branch="false"/>
|
|
4818
|
+
<line number="75" hits="11" branch="false"/>
|
|
4819
|
+
<line number="80" hits="27" branch="true" condition-coverage="85.71428571428571% (6/7)"/>
|
|
4820
|
+
<line number="82" hits="27" branch="false"/>
|
|
4821
|
+
<line number="100" hits="0" branch="false"/>
|
|
4822
|
+
<line number="110" hits="23" branch="false"/>
|
|
4823
|
+
<line number="131" hits="27" branch="false"/>
|
|
4692
4824
|
</lines>
|
|
4693
4825
|
</class>
|
|
4694
|
-
<class name="EditDeviceButtons.tsx" filename="src/Device/DeviceSelector/DeviceList/EditDeviceButtons.tsx" line-rate="1" branch-rate="
|
|
4826
|
+
<class name="EditDeviceButtons.tsx" filename="src/Device/DeviceSelector/DeviceList/EditDeviceButtons.tsx" line-rate="1" branch-rate="0.5">
|
|
4695
4827
|
<methods>
|
|
4828
|
+
<method name="(anonymous_2)" hits="1" signature="()V">
|
|
4829
|
+
<lines>
|
|
4830
|
+
<line number="21" hits="1"/>
|
|
4831
|
+
</lines>
|
|
4832
|
+
</method>
|
|
4696
4833
|
</methods>
|
|
4697
4834
|
<lines>
|
|
4698
4835
|
<line number="7" hits="1" branch="false"/>
|
|
@@ -4700,34 +4837,36 @@
|
|
|
4700
4837
|
<line number="11" hits="1" branch="false"/>
|
|
4701
4838
|
<line number="12" hits="1" branch="false"/>
|
|
4702
4839
|
<line number="14" hits="1" branch="false"/>
|
|
4703
|
-
<line number="
|
|
4840
|
+
<line number="21" hits="1" branch="false"/>
|
|
4841
|
+
<line number="22" hits="1" branch="true" condition-coverage="50% (1/2)"/>
|
|
4842
|
+
<line number="29" hits="1" branch="false"/>
|
|
4704
4843
|
</lines>
|
|
4705
4844
|
</class>
|
|
4706
|
-
<class name="MoreDeviceInfo.tsx" filename="src/Device/DeviceSelector/DeviceList/MoreDeviceInfo.tsx" line-rate="0.
|
|
4845
|
+
<class name="MoreDeviceInfo.tsx" filename="src/Device/DeviceSelector/DeviceList/MoreDeviceInfo.tsx" line-rate="0.875" branch-rate="0.6666">
|
|
4707
4846
|
<methods>
|
|
4708
|
-
<method name="(anonymous_2)" hits="
|
|
4847
|
+
<method name="(anonymous_2)" hits="2" signature="()V">
|
|
4709
4848
|
<lines>
|
|
4710
|
-
<line number="
|
|
4849
|
+
<line number="13" hits="2"/>
|
|
4711
4850
|
</lines>
|
|
4712
4851
|
</method>
|
|
4713
4852
|
<method name="(anonymous_3)" hits="1" signature="()V">
|
|
4714
4853
|
<lines>
|
|
4715
|
-
<line number="
|
|
4854
|
+
<line number="20" hits="1"/>
|
|
4716
4855
|
</lines>
|
|
4717
4856
|
</method>
|
|
4718
4857
|
<method name="(anonymous_4)" hits="1" signature="()V">
|
|
4719
4858
|
<lines>
|
|
4720
|
-
<line number="
|
|
4859
|
+
<line number="32" hits="1"/>
|
|
4721
4860
|
</lines>
|
|
4722
4861
|
</method>
|
|
4723
4862
|
<method name="(anonymous_5)" hits="1" signature="()V">
|
|
4724
4863
|
<lines>
|
|
4725
|
-
<line number="
|
|
4864
|
+
<line number="44" hits="1"/>
|
|
4726
4865
|
</lines>
|
|
4727
4866
|
</method>
|
|
4728
4867
|
<method name="(anonymous_6)" hits="2" signature="()V">
|
|
4729
4868
|
<lines>
|
|
4730
|
-
<line number="
|
|
4869
|
+
<line number="48" hits="2"/>
|
|
4731
4870
|
</lines>
|
|
4732
4871
|
</method>
|
|
4733
4872
|
</methods>
|
|
@@ -4735,21 +4874,19 @@
|
|
|
4735
4874
|
<line number="7" hits="1" branch="false"/>
|
|
4736
4875
|
<line number="10" hits="1" branch="false"/>
|
|
4737
4876
|
<line number="13" hits="1" branch="false"/>
|
|
4738
|
-
<line number="
|
|
4739
|
-
<line number="
|
|
4740
|
-
<line number="
|
|
4741
|
-
<line number="
|
|
4742
|
-
<line number="
|
|
4743
|
-
<line number="
|
|
4744
|
-
<line number="
|
|
4745
|
-
<line number="
|
|
4746
|
-
<line number="
|
|
4747
|
-
<line number="33" hits="1" branch="false"/>
|
|
4748
|
-
<line number="36" hits="0" branch="false"/>
|
|
4749
|
-
<line number="43" hits="1" branch="false"/>
|
|
4877
|
+
<line number="14" hits="2" branch="false"/>
|
|
4878
|
+
<line number="20" hits="1" branch="false"/>
|
|
4879
|
+
<line number="21" hits="1" branch="true" condition-coverage="60% (3/5)"/>
|
|
4880
|
+
<line number="22" hits="0" branch="false"/>
|
|
4881
|
+
<line number="25" hits="1" branch="false"/>
|
|
4882
|
+
<line number="32" hits="1" branch="false"/>
|
|
4883
|
+
<line number="33" hits="1" branch="true" condition-coverage="100% (1/1)"/>
|
|
4884
|
+
<line number="34" hits="1" branch="false"/>
|
|
4885
|
+
<line number="37" hits="0" branch="false"/>
|
|
4750
4886
|
<line number="44" hits="1" branch="false"/>
|
|
4751
|
-
<line number="
|
|
4752
|
-
<line number="
|
|
4887
|
+
<line number="45" hits="1" branch="true" condition-coverage="50% (1/2)"/>
|
|
4888
|
+
<line number="49" hits="2" branch="false"/>
|
|
4889
|
+
<line number="55" hits="1" branch="false"/>
|
|
4753
4890
|
</lines>
|
|
4754
4891
|
</class>
|
|
4755
4892
|
<class name="RenameDevice.tsx" filename="src/Device/DeviceSelector/DeviceList/RenameDevice.tsx" line-rate="1" branch-rate="1">
|
|
@@ -4807,7 +4944,7 @@
|
|
|
4807
4944
|
<line number="10" hits="1" branch="false"/>
|
|
4808
4945
|
<line number="12" hits="1" branch="false"/>
|
|
4809
4946
|
<line number="21" hits="1" branch="false"/>
|
|
4810
|
-
<line number="23" hits="
|
|
4947
|
+
<line number="23" hits="27" branch="false"/>
|
|
4811
4948
|
<line number="24" hits="30" branch="false"/>
|
|
4812
4949
|
<line number="25" hits="30" branch="false"/>
|
|
4813
4950
|
<line number="26" hits="30" branch="false"/>
|
|
@@ -4834,24 +4971,24 @@
|
|
|
4834
4971
|
<classes>
|
|
4835
4972
|
<class name="deviceInfo.ts" filename="src/Device/deviceInfo/deviceInfo.ts" line-rate="0.7646999999999999" branch-rate="0.4181">
|
|
4836
4973
|
<methods>
|
|
4837
|
-
<method name="(anonymous_9)" hits="
|
|
4974
|
+
<method name="(anonymous_9)" hits="60" signature="()V">
|
|
4838
4975
|
<lines>
|
|
4839
|
-
<line number="219" hits="
|
|
4976
|
+
<line number="219" hits="60"/>
|
|
4840
4977
|
</lines>
|
|
4841
4978
|
</method>
|
|
4842
|
-
<method name="(anonymous_11)" hits="
|
|
4979
|
+
<method name="(anonymous_11)" hits="60" signature="()V">
|
|
4843
4980
|
<lines>
|
|
4844
|
-
<line number="237" hits="
|
|
4981
|
+
<line number="237" hits="60"/>
|
|
4845
4982
|
</lines>
|
|
4846
4983
|
</method>
|
|
4847
|
-
<method name="(anonymous_12)" hits="
|
|
4984
|
+
<method name="(anonymous_12)" hits="30" signature="()V">
|
|
4848
4985
|
<lines>
|
|
4849
|
-
<line number="240" hits="
|
|
4986
|
+
<line number="240" hits="30"/>
|
|
4850
4987
|
</lines>
|
|
4851
4988
|
</method>
|
|
4852
|
-
<method name="(anonymous_13)" hits="
|
|
4989
|
+
<method name="(anonymous_13)" hits="30" signature="()V">
|
|
4853
4990
|
<lines>
|
|
4854
|
-
<line number="247" hits="
|
|
4991
|
+
<line number="247" hits="30"/>
|
|
4855
4992
|
</lines>
|
|
4856
4993
|
</method>
|
|
4857
4994
|
<method name="(anonymous_14)" hits="0" signature="()V">
|
|
@@ -4876,26 +5013,26 @@
|
|
|
4876
5013
|
<line number="42" hits="3" branch="false"/>
|
|
4877
5014
|
<line number="43" hits="3" branch="false"/>
|
|
4878
5015
|
<line number="57" hits="3" branch="false"/>
|
|
4879
|
-
<line number="201" hits="
|
|
5016
|
+
<line number="201" hits="60" branch="false"/>
|
|
4880
5017
|
<line number="205" hits="3" branch="false"/>
|
|
4881
|
-
<line number="207" hits="
|
|
5018
|
+
<line number="207" hits="120" branch="true" condition-coverage="83.33333333333334% (5/6)"/>
|
|
4882
5019
|
<line number="209" hits="0" branch="false"/>
|
|
4883
5020
|
<line number="219" hits="3" branch="false"/>
|
|
4884
|
-
<line number="220" hits="
|
|
5021
|
+
<line number="220" hits="60" branch="true" condition-coverage="0% (0/1)"/>
|
|
4885
5022
|
<line number="221" hits="0" branch="true" condition-coverage="0% (0/7)"/>
|
|
4886
5023
|
<line number="222" hits="0" branch="false"/>
|
|
4887
5024
|
<line number="224" hits="0" branch="true" condition-coverage="0% (0/5)"/>
|
|
4888
5025
|
<line number="225" hits="0" branch="false"/>
|
|
4889
|
-
<line number="228" hits="
|
|
4890
|
-
<line number="231" hits="
|
|
4891
|
-
<line number="237" hits="
|
|
4892
|
-
<line number="238" hits="
|
|
5026
|
+
<line number="228" hits="60" branch="false"/>
|
|
5027
|
+
<line number="231" hits="60" branch="false"/>
|
|
5028
|
+
<line number="237" hits="30" branch="false"/>
|
|
5029
|
+
<line number="238" hits="60" branch="true" condition-coverage="100% (3/3)"/>
|
|
4893
5030
|
<line number="240" hits="3" branch="false"/>
|
|
4894
|
-
<line number="243" hits="
|
|
4895
|
-
<line number="247" hits="
|
|
4896
|
-
<line number="251" hits="
|
|
5031
|
+
<line number="243" hits="30" branch="true" condition-coverage="100% (3/3)"/>
|
|
5032
|
+
<line number="247" hits="30" branch="false"/>
|
|
5033
|
+
<line number="251" hits="30" branch="true" condition-coverage="66.66666666666666% (2/3)"/>
|
|
4897
5034
|
<line number="252" hits="0" branch="false"/>
|
|
4898
|
-
<line number="255" hits="
|
|
5035
|
+
<line number="255" hits="30" branch="true" condition-coverage="14.285714285714285% (1/7)"/>
|
|
4899
5036
|
<line number="258" hits="3" branch="false"/>
|
|
4900
5037
|
<line number="259" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
4901
5038
|
<line number="262" hits="3" branch="false"/>
|
|
@@ -4928,19 +5065,19 @@
|
|
|
4928
5065
|
<line number="46" hits="0"/>
|
|
4929
5066
|
</lines>
|
|
4930
5067
|
</method>
|
|
4931
|
-
<method name="(anonymous_13)" hits="
|
|
5068
|
+
<method name="(anonymous_13)" hits="26" signature="()V">
|
|
4932
5069
|
<lines>
|
|
4933
|
-
<line number="80" hits="
|
|
5070
|
+
<line number="80" hits="26"/>
|
|
4934
5071
|
</lines>
|
|
4935
5072
|
</method>
|
|
4936
|
-
<method name="(anonymous_14)" hits="
|
|
5073
|
+
<method name="(anonymous_14)" hits="26" signature="()V">
|
|
4937
5074
|
<lines>
|
|
4938
|
-
<line number="84" hits="
|
|
5075
|
+
<line number="84" hits="26"/>
|
|
4939
5076
|
</lines>
|
|
4940
5077
|
</method>
|
|
4941
|
-
<method name="(anonymous_15)" hits="
|
|
5078
|
+
<method name="(anonymous_15)" hits="42" signature="()V">
|
|
4942
5079
|
<lines>
|
|
4943
|
-
<line number="98" hits="
|
|
5080
|
+
<line number="98" hits="42"/>
|
|
4944
5081
|
</lines>
|
|
4945
5082
|
</method>
|
|
4946
5083
|
<method name="(anonymous_16)" hits="6" signature="()V">
|
|
@@ -4982,11 +5119,11 @@
|
|
|
4982
5119
|
<line number="47" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
4983
5120
|
<line number="48" hits="0" branch="false"/>
|
|
4984
5121
|
<line number="80" hits="6" branch="false"/>
|
|
4985
|
-
<line number="81" hits="
|
|
5122
|
+
<line number="81" hits="26" branch="false"/>
|
|
4986
5123
|
<line number="84" hits="6" branch="false"/>
|
|
4987
|
-
<line number="85" hits="
|
|
5124
|
+
<line number="85" hits="26" branch="false"/>
|
|
4988
5125
|
<line number="98" hits="113" branch="false"/>
|
|
4989
|
-
<line number="105" hits="
|
|
5126
|
+
<line number="105" hits="42" branch="false"/>
|
|
4990
5127
|
<line number="125" hits="6" branch="false"/>
|
|
4991
5128
|
<line number="138" hits="6" branch="false"/>
|
|
4992
5129
|
<line number="162" hits="6" branch="false"/>
|
|
@@ -5659,78 +5796,78 @@
|
|
|
5659
5796
|
</class>
|
|
5660
5797
|
</classes>
|
|
5661
5798
|
</package>
|
|
5662
|
-
<package name="src.InlineInput" line-rate="0.
|
|
5799
|
+
<package name="src.InlineInput" line-rate="0.3" branch-rate="0.2857">
|
|
5663
5800
|
<classes>
|
|
5664
|
-
<class name="InlineInput.tsx" filename="src/InlineInput/InlineInput.tsx" line-rate="0.
|
|
5801
|
+
<class name="InlineInput.tsx" filename="src/InlineInput/InlineInput.tsx" line-rate="0.3" branch-rate="0.2857">
|
|
5665
5802
|
<methods>
|
|
5666
|
-
<method name="(anonymous_5)" hits="
|
|
5803
|
+
<method name="(anonymous_5)" hits="30" signature="()V">
|
|
5667
5804
|
<lines>
|
|
5668
|
-
<line number="37" hits="
|
|
5805
|
+
<line number="37" hits="30"/>
|
|
5669
5806
|
</lines>
|
|
5670
5807
|
</method>
|
|
5671
|
-
<method name="(anonymous_6)" hits="
|
|
5808
|
+
<method name="(anonymous_6)" hits="30" signature="()V">
|
|
5672
5809
|
<lines>
|
|
5673
|
-
<line number="42" hits="
|
|
5810
|
+
<line number="42" hits="30"/>
|
|
5674
5811
|
</lines>
|
|
5675
5812
|
</method>
|
|
5676
|
-
<method name="(anonymous_7)" hits="
|
|
5813
|
+
<method name="(anonymous_7)" hits="30" signature="()V">
|
|
5677
5814
|
<lines>
|
|
5678
|
-
<line number="
|
|
5815
|
+
<line number="66" hits="30"/>
|
|
5679
5816
|
</lines>
|
|
5680
5817
|
</method>
|
|
5681
5818
|
<method name="(anonymous_8)" hits="0" signature="()V">
|
|
5682
5819
|
<lines>
|
|
5683
|
-
<line number="
|
|
5820
|
+
<line number="70" hits="0"/>
|
|
5684
5821
|
</lines>
|
|
5685
5822
|
</method>
|
|
5686
5823
|
<method name="(anonymous_9)" hits="0" signature="()V">
|
|
5687
5824
|
<lines>
|
|
5688
|
-
<line number="
|
|
5825
|
+
<line number="72" hits="0"/>
|
|
5689
5826
|
</lines>
|
|
5690
5827
|
</method>
|
|
5691
5828
|
<method name="(anonymous_10)" hits="0" signature="()V">
|
|
5692
5829
|
<lines>
|
|
5693
|
-
<line number="
|
|
5830
|
+
<line number="73" hits="0"/>
|
|
5694
5831
|
</lines>
|
|
5695
5832
|
</method>
|
|
5696
5833
|
<method name="(anonymous_11)" hits="0" signature="()V">
|
|
5697
5834
|
<lines>
|
|
5698
|
-
<line number="
|
|
5835
|
+
<line number="74" hits="0"/>
|
|
5699
5836
|
</lines>
|
|
5700
5837
|
</method>
|
|
5701
5838
|
<method name="(anonymous_12)" hits="0" signature="()V">
|
|
5702
5839
|
<lines>
|
|
5703
|
-
<line number="
|
|
5840
|
+
<line number="86" hits="0"/>
|
|
5704
5841
|
</lines>
|
|
5705
5842
|
</method>
|
|
5706
5843
|
<method name="(anonymous_13)" hits="0" signature="()V">
|
|
5707
5844
|
<lines>
|
|
5708
|
-
<line number="
|
|
5845
|
+
<line number="104" hits="0"/>
|
|
5709
5846
|
</lines>
|
|
5710
5847
|
</method>
|
|
5711
5848
|
<method name="(anonymous_14)" hits="0" signature="()V">
|
|
5712
5849
|
<lines>
|
|
5713
|
-
<line number="
|
|
5850
|
+
<line number="126" hits="0"/>
|
|
5714
5851
|
</lines>
|
|
5715
5852
|
</method>
|
|
5716
5853
|
<method name="(anonymous_15)" hits="0" signature="()V">
|
|
5717
5854
|
<lines>
|
|
5718
|
-
<line number="
|
|
5855
|
+
<line number="141" hits="0"/>
|
|
5719
5856
|
</lines>
|
|
5720
5857
|
</method>
|
|
5721
5858
|
<method name="(anonymous_16)" hits="0" signature="()V">
|
|
5722
5859
|
<lines>
|
|
5723
|
-
<line number="
|
|
5860
|
+
<line number="157" hits="0"/>
|
|
5724
5861
|
</lines>
|
|
5725
5862
|
</method>
|
|
5726
5863
|
<method name="(anonymous_17)" hits="0" signature="()V">
|
|
5727
5864
|
<lines>
|
|
5728
|
-
<line number="
|
|
5865
|
+
<line number="179" hits="0"/>
|
|
5729
5866
|
</lines>
|
|
5730
5867
|
</method>
|
|
5731
5868
|
<method name="(anonymous_18)" hits="0" signature="()V">
|
|
5732
5869
|
<lines>
|
|
5733
|
-
<line number="
|
|
5870
|
+
<line number="182" hits="0"/>
|
|
5734
5871
|
</lines>
|
|
5735
5872
|
</method>
|
|
5736
5873
|
</methods>
|
|
@@ -5739,56 +5876,62 @@
|
|
|
5739
5876
|
<line number="9" hits="1" branch="false"/>
|
|
5740
5877
|
<line number="11" hits="1" branch="false"/>
|
|
5741
5878
|
<line number="37" hits="1" branch="false"/>
|
|
5742
|
-
<line number="41" hits="
|
|
5743
|
-
<line number="42" hits="
|
|
5744
|
-
<line number="43" hits="
|
|
5879
|
+
<line number="41" hits="30" branch="false"/>
|
|
5880
|
+
<line number="42" hits="30" branch="false"/>
|
|
5881
|
+
<line number="43" hits="30" branch="true" condition-coverage="0% (0/1)"/>
|
|
5745
5882
|
<line number="44" hits="0" branch="false"/>
|
|
5746
5883
|
<line number="45" hits="0" branch="false"/>
|
|
5747
|
-
<line number="48" hits="
|
|
5748
|
-
<line number="
|
|
5749
|
-
<line number="
|
|
5750
|
-
<line number="
|
|
5751
|
-
<line number="
|
|
5752
|
-
<line number="
|
|
5753
|
-
<line number="
|
|
5754
|
-
<line number="
|
|
5755
|
-
<line number="
|
|
5756
|
-
<line number="
|
|
5757
|
-
<line number="
|
|
5758
|
-
<line number="
|
|
5759
|
-
<line number="
|
|
5760
|
-
<line number="
|
|
5761
|
-
<line number="
|
|
5762
|
-
<line number="
|
|
5763
|
-
<line number="93" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
5764
|
-
<line number="94" hits="0" branch="false"/>
|
|
5765
|
-
<line number="97" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
5884
|
+
<line number="48" hits="30" branch="false"/>
|
|
5885
|
+
<line number="65" hits="1" branch="false"/>
|
|
5886
|
+
<line number="70" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
5887
|
+
<line number="73" hits="0" branch="true" condition-coverage="100% (1/1)"/>
|
|
5888
|
+
<line number="74" hits="0" branch="true" condition-coverage="100% (1/1)"/>
|
|
5889
|
+
<line number="82" hits="30" branch="false"/>
|
|
5890
|
+
<line number="83" hits="30" branch="false"/>
|
|
5891
|
+
<line number="84" hits="30" branch="false"/>
|
|
5892
|
+
<line number="86" hits="30" branch="false"/>
|
|
5893
|
+
<line number="87" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
5894
|
+
<line number="88" hits="0" branch="false"/>
|
|
5895
|
+
<line number="91" hits="0" branch="false"/>
|
|
5896
|
+
<line number="92" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
5897
|
+
<line number="93" hits="0" branch="false"/>
|
|
5898
|
+
<line number="96" hits="0" branch="false"/>
|
|
5899
|
+
<line number="97" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
5766
5900
|
<line number="98" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
5767
5901
|
<line number="99" hits="0" branch="false"/>
|
|
5768
|
-
<line number="
|
|
5769
|
-
<line number="
|
|
5770
|
-
<line number="
|
|
5771
|
-
<line number="108" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
5902
|
+
<line number="104" hits="30" branch="false"/>
|
|
5903
|
+
<line number="105" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
5904
|
+
<line number="106" hits="0" branch="false"/>
|
|
5772
5905
|
<line number="109" hits="0" branch="false"/>
|
|
5773
|
-
<line number="
|
|
5774
|
-
<line number="
|
|
5775
|
-
<line number="
|
|
5776
|
-
<line number="
|
|
5906
|
+
<line number="111" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
5907
|
+
<line number="112" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
5908
|
+
<line number="113" hits="0" branch="false"/>
|
|
5909
|
+
<line number="114" hits="0" branch="false"/>
|
|
5777
5910
|
<line number="117" hits="0" branch="false"/>
|
|
5778
|
-
<line number="
|
|
5779
|
-
<line number="
|
|
5780
|
-
<line number="
|
|
5781
|
-
<line number="127" hits="0" branch="
|
|
5782
|
-
<line number="
|
|
5911
|
+
<line number="121" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
5912
|
+
<line number="122" hits="0" branch="false"/>
|
|
5913
|
+
<line number="126" hits="30" branch="false"/>
|
|
5914
|
+
<line number="127" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
5915
|
+
<line number="128" hits="0" branch="false"/>
|
|
5783
5916
|
<line number="131" hits="0" branch="false"/>
|
|
5784
|
-
<line number="
|
|
5785
|
-
<line number="134" hits="0" branch="
|
|
5917
|
+
<line number="133" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
5918
|
+
<line number="134" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
5786
5919
|
<line number="135" hits="0" branch="false"/>
|
|
5787
|
-
<line number="
|
|
5788
|
-
<line number="
|
|
5920
|
+
<line number="136" hits="0" branch="false"/>
|
|
5921
|
+
<line number="141" hits="30" branch="false"/>
|
|
5922
|
+
<line number="142" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
5923
|
+
<line number="143" hits="0" branch="false"/>
|
|
5924
|
+
<line number="146" hits="0" branch="false"/>
|
|
5925
|
+
<line number="148" hits="0" branch="true" condition-coverage="0% (0/2)"/>
|
|
5926
|
+
<line number="150" hits="0" branch="false"/>
|
|
5927
|
+
<line number="151" hits="0" branch="false"/>
|
|
5928
|
+
<line number="153" hits="0" branch="false"/>
|
|
5929
|
+
<line number="154" hits="0" branch="false"/>
|
|
5930
|
+
<line number="157" hits="30" branch="false"/>
|
|
5789
5931
|
<line number="158" hits="0" branch="false"/>
|
|
5790
|
-
<line number="
|
|
5791
|
-
<line number="
|
|
5932
|
+
<line number="180" hits="0" branch="false"/>
|
|
5933
|
+
<line number="182" hits="0" branch="false"/>
|
|
5934
|
+
<line number="192" hits="30" branch="false"/>
|
|
5792
5935
|
</lines>
|
|
5793
5936
|
</class>
|
|
5794
5937
|
</classes>
|
|
@@ -6465,9 +6608,9 @@
|
|
|
6465
6608
|
<classes>
|
|
6466
6609
|
<class name="PseudoButton.tsx" filename="src/PseudoButton/PseudoButton.tsx" line-rate="0.7857" branch-rate="0">
|
|
6467
6610
|
<methods>
|
|
6468
|
-
<method name="(anonymous_2)" hits="
|
|
6611
|
+
<method name="(anonymous_2)" hits="119" signature="()V">
|
|
6469
6612
|
<lines>
|
|
6470
|
-
<line number="12" hits="
|
|
6613
|
+
<line number="12" hits="119"/>
|
|
6471
6614
|
</lines>
|
|
6472
6615
|
</method>
|
|
6473
6616
|
<method name="(anonymous_3)" hits="0" signature="()V">
|
|
@@ -6475,9 +6618,9 @@
|
|
|
6475
6618
|
<line number="13" hits="0"/>
|
|
6476
6619
|
</lines>
|
|
6477
6620
|
</method>
|
|
6478
|
-
<method name="(anonymous_4)" hits="
|
|
6621
|
+
<method name="(anonymous_4)" hits="119" signature="()V">
|
|
6479
6622
|
<lines>
|
|
6480
|
-
<line number="21" hits="
|
|
6623
|
+
<line number="21" hits="119"/>
|
|
6481
6624
|
</lines>
|
|
6482
6625
|
</method>
|
|
6483
6626
|
<method name="(anonymous_5)" hits="16" signature="()V">
|
|
@@ -6485,9 +6628,9 @@
|
|
|
6485
6628
|
<line number="24" hits="16"/>
|
|
6486
6629
|
</lines>
|
|
6487
6630
|
</method>
|
|
6488
|
-
<method name="(anonymous_6)" hits="
|
|
6631
|
+
<method name="(anonymous_6)" hits="119" signature="()V">
|
|
6489
6632
|
<lines>
|
|
6490
|
-
<line number="32" hits="
|
|
6633
|
+
<line number="32" hits="119"/>
|
|
6491
6634
|
</lines>
|
|
6492
6635
|
</method>
|
|
6493
6636
|
<method name="(anonymous_7)" hits="0" signature="()V">
|
|
@@ -6500,17 +6643,17 @@
|
|
|
6500
6643
|
<line number="7" hits="3" branch="false"/>
|
|
6501
6644
|
<line number="9" hits="3" branch="false"/>
|
|
6502
6645
|
<line number="12" hits="3" branch="false"/>
|
|
6503
|
-
<line number="13" hits="
|
|
6646
|
+
<line number="13" hits="119" branch="false"/>
|
|
6504
6647
|
<line number="14" hits="0" branch="false"/>
|
|
6505
6648
|
<line number="15" hits="0" branch="true" condition-coverage="0% (0/3)"/>
|
|
6506
6649
|
<line number="16" hits="0" branch="false"/>
|
|
6507
6650
|
<line number="21" hits="3" branch="false"/>
|
|
6508
|
-
<line number="24" hits="
|
|
6651
|
+
<line number="24" hits="119" branch="false"/>
|
|
6509
6652
|
<line number="25" hits="16" branch="false"/>
|
|
6510
6653
|
<line number="26" hits="16" branch="false"/>
|
|
6511
6654
|
<line number="27" hits="16" branch="false"/>
|
|
6512
|
-
<line number="32" hits="
|
|
6513
|
-
<line number="45" hits="
|
|
6655
|
+
<line number="32" hits="119" branch="false"/>
|
|
6656
|
+
<line number="45" hits="119" branch="false"/>
|
|
6514
6657
|
</lines>
|
|
6515
6658
|
</class>
|
|
6516
6659
|
</classes>
|
|
@@ -7200,9 +7343,9 @@
|
|
|
7200
7343
|
<classes>
|
|
7201
7344
|
<class name="Toggle.tsx" filename="src/Toggle/Toggle.tsx" line-rate="0.8332999999999999" branch-rate="0.8095">
|
|
7202
7345
|
<methods>
|
|
7203
|
-
<method name="(anonymous_2)" hits="
|
|
7346
|
+
<method name="(anonymous_2)" hits="31" signature="()V">
|
|
7204
7347
|
<lines>
|
|
7205
|
-
<line number="30" hits="
|
|
7348
|
+
<line number="30" hits="31"/>
|
|
7206
7349
|
</lines>
|
|
7207
7350
|
</method>
|
|
7208
7351
|
<method name="(anonymous_3)" hits="0" signature="()V">
|
|
@@ -7215,15 +7358,15 @@
|
|
|
7215
7358
|
<line number="7" hits="2" branch="false"/>
|
|
7216
7359
|
<line number="9" hits="2" branch="false"/>
|
|
7217
7360
|
<line number="11" hits="2" branch="false"/>
|
|
7218
|
-
<line number="30" hits="
|
|
7219
|
-
<line number="46" hits="
|
|
7220
|
-
<line number="47" hits="
|
|
7221
|
-
<line number="49" hits="
|
|
7361
|
+
<line number="30" hits="31" branch="false"/>
|
|
7362
|
+
<line number="46" hits="31" branch="false"/>
|
|
7363
|
+
<line number="47" hits="31" branch="false"/>
|
|
7364
|
+
<line number="49" hits="31" branch="false"/>
|
|
7222
7365
|
<line number="50" hits="0" branch="true" condition-coverage="0% (0/1)"/>
|
|
7223
7366
|
<line number="51" hits="0" branch="false"/>
|
|
7224
|
-
<line number="55" hits="
|
|
7225
|
-
<line number="59" hits="
|
|
7226
|
-
<line number="63" hits="
|
|
7367
|
+
<line number="55" hits="31" branch="true" condition-coverage="50% (1/2)"/>
|
|
7368
|
+
<line number="59" hits="31" branch="true" condition-coverage="100% (2/2)"/>
|
|
7369
|
+
<line number="63" hits="31" branch="false"/>
|
|
7227
7370
|
</lines>
|
|
7228
7371
|
</class>
|
|
7229
7372
|
</classes>
|
|
@@ -7422,7 +7565,7 @@
|
|
|
7422
7565
|
</class>
|
|
7423
7566
|
</classes>
|
|
7424
7567
|
</package>
|
|
7425
|
-
<package name="src.utils" line-rate="0.6344" branch-rate="0.
|
|
7568
|
+
<package name="src.utils" line-rate="0.6344" branch-rate="0.1794">
|
|
7426
7569
|
<classes>
|
|
7427
7570
|
<class name="appDirs.ts" filename="src/utils/appDirs.ts" line-rate="0.6153" branch-rate="1">
|
|
7428
7571
|
<methods>
|
|
@@ -7470,21 +7613,21 @@
|
|
|
7470
7613
|
</class>
|
|
7471
7614
|
<class name="classNames.ts" filename="src/utils/classNames.ts" line-rate="1" branch-rate="1">
|
|
7472
7615
|
<methods>
|
|
7473
|
-
<method name="(anonymous_1)" hits="
|
|
7616
|
+
<method name="(anonymous_1)" hits="1841" signature="()V">
|
|
7474
7617
|
<lines>
|
|
7475
|
-
<line number="7" hits="
|
|
7618
|
+
<line number="7" hits="1841"/>
|
|
7476
7619
|
</lines>
|
|
7477
7620
|
</method>
|
|
7478
|
-
<method name="(anonymous_2)" hits="
|
|
7621
|
+
<method name="(anonymous_2)" hits="393" signature="()V">
|
|
7479
7622
|
<lines>
|
|
7480
|
-
<line number="24" hits="
|
|
7623
|
+
<line number="24" hits="393"/>
|
|
7481
7624
|
</lines>
|
|
7482
7625
|
</method>
|
|
7483
7626
|
</methods>
|
|
7484
7627
|
<lines>
|
|
7485
|
-
<line number="7" hits="
|
|
7486
|
-
<line number="24" hits="
|
|
7487
|
-
<line number="25" hits="
|
|
7628
|
+
<line number="7" hits="1841" branch="false"/>
|
|
7629
|
+
<line number="24" hits="393" branch="false"/>
|
|
7630
|
+
<line number="25" hits="393" branch="false"/>
|
|
7488
7631
|
</lines>
|
|
7489
7632
|
</class>
|
|
7490
7633
|
<class name="colors.ts" filename="src/utils/colors.ts" line-rate="1" branch-rate="1">
|
|
@@ -7925,9 +8068,9 @@
|
|
|
7925
8068
|
</class>
|
|
7926
8069
|
<class name="useHotKey.ts" filename="src/utils/useHotKey.ts" line-rate="0.7916" branch-rate="0.6">
|
|
7927
8070
|
<methods>
|
|
7928
|
-
<method name="(anonymous_2)" hits="
|
|
8071
|
+
<method name="(anonymous_2)" hits="37" signature="()V">
|
|
7929
8072
|
<lines>
|
|
7930
|
-
<line number="14" hits="
|
|
8073
|
+
<line number="14" hits="37"/>
|
|
7931
8074
|
</lines>
|
|
7932
8075
|
</method>
|
|
7933
8076
|
<method name="(anonymous_3)" hits="19" signature="()V">
|
|
@@ -7950,14 +8093,14 @@
|
|
|
7950
8093
|
<line number="32" hits="0"/>
|
|
7951
8094
|
</lines>
|
|
7952
8095
|
</method>
|
|
7953
|
-
<method name="(anonymous_7)" hits="
|
|
8096
|
+
<method name="(anonymous_7)" hits="37" signature="()V">
|
|
7954
8097
|
<lines>
|
|
7955
|
-
<line number="47" hits="
|
|
8098
|
+
<line number="47" hits="37"/>
|
|
7956
8099
|
</lines>
|
|
7957
8100
|
</method>
|
|
7958
|
-
<method name="(anonymous_8)" hits="
|
|
8101
|
+
<method name="(anonymous_8)" hits="37" signature="()V">
|
|
7959
8102
|
<lines>
|
|
7960
|
-
<line number="52" hits="
|
|
8103
|
+
<line number="52" hits="37"/>
|
|
7961
8104
|
</lines>
|
|
7962
8105
|
</method>
|
|
7963
8106
|
</methods>
|
|
@@ -7968,8 +8111,8 @@
|
|
|
7968
8111
|
<line number="11" hits="3" branch="false"/>
|
|
7969
8112
|
<line number="12" hits="3" branch="false"/>
|
|
7970
8113
|
<line number="14" hits="3" branch="true" condition-coverage="100% (1/1)"/>
|
|
7971
|
-
<line number="15" hits="
|
|
7972
|
-
<line number="16" hits="
|
|
8114
|
+
<line number="15" hits="37" branch="false"/>
|
|
8115
|
+
<line number="16" hits="37" branch="false"/>
|
|
7973
8116
|
<line number="17" hits="19" branch="false"/>
|
|
7974
8117
|
<line number="19" hits="19" branch="false"/>
|
|
7975
8118
|
<line number="20" hits="0" branch="false"/>
|
|
@@ -7981,11 +8124,11 @@
|
|
|
7981
8124
|
<line number="33" hits="0" branch="false"/>
|
|
7982
8125
|
<line number="39" hits="0" branch="false"/>
|
|
7983
8126
|
<line number="47" hits="3" branch="false"/>
|
|
7984
|
-
<line number="50" hits="
|
|
7985
|
-
<line number="52" hits="
|
|
7986
|
-
<line number="57" hits="
|
|
8127
|
+
<line number="50" hits="37" branch="true" condition-coverage="50% (1/2)"/>
|
|
8128
|
+
<line number="52" hits="37" branch="false"/>
|
|
8129
|
+
<line number="57" hits="37" branch="true" condition-coverage="50% (1/2)"/>
|
|
7987
8130
|
<line number="58" hits="0" branch="false"/>
|
|
7988
|
-
<line number="60" hits="
|
|
8131
|
+
<line number="60" hits="37" branch="false"/>
|
|
7989
8132
|
</lines>
|
|
7990
8133
|
</class>
|
|
7991
8134
|
<class name="useStopwatch.ts" filename="src/utils/useStopwatch.ts" line-rate="0.95" branch-rate="0.75">
|