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

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

23 Jul 2024 02:07PM CUT coverage: 41.835% (+0.08%) from 41.758%
10060505763

Pull #152

github

web-flow
Merge 50da6f410 into 0b302f5ab
Pull Request #152: test: add backup and revocation message e2e scenarios

4883 of 11672 relevant lines covered (41.84%)

98.55 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