• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

hyperledger / identus-edge-agent-sdk-swift / 10475918581

20 Aug 2024 05:00PM UTC coverage: 43.414% (-0.2%) from 43.578%
10475918581

push

github

amagyar-iohk
test: add backup e2e scenario

Signed-off-by: Allain Magyar <allain.magyar@iohk.io>

test: refactor + revocation

Signed-off-by: Allain Magyar <allain.magyar@iohk.io>

test: adds pending validation for edge agent side

Signed-off-by: Allain Magyar <allain.magyar@iohk.io>

fix: jwt verification

Signed-off-by: Allain Magyar <allain.magyar@iohk.io>

test: more tests

Signed-off-by: Allain Magyar <allain.magyar@iohk.io>

test: zkp negative scenario

Signed-off-by: Allain Magyar <allain.magyar@iohk.io>

undo spaces removal

Signed-off-by: Allain Magyar <allain.magyar@iohk.io>

changes int to date

Signed-off-by: Allain Magyar <allain.magyar@iohk.io>

2 of 49 new or added lines in 4 files covered. (4.08%)

5092 of 11729 relevant lines covered (43.41%)

99.27 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/EdgeAgentSDK/Apollo/Sources/Helper/Array+KotlinArray.swift
1
import ApolloLibrary
2
import Foundation
3

4
extension Array where Element: AnyObject {
5
    /// Allows conversion from `KotlinArray` to `Array`
6
    public init(_ array: KotlinArray<Element>) {
×
7
        self.init()
×
8
        self.reserveCapacity(Int(array.size))
×
9
        let iterator = array.iterator()
×
10
        while iterator.hasNext() {
×
11
            guard let element = iterator.next() as? Element else { return }
×
12
            self.append(element)
×
13
        }
×
14
    }
×
15
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc