Sha256: 067d914fff725846672e21d09fe707f03d66e0a197e1db2d81012b4f63f74851

Contents?: true

Size: 577 Bytes

Versions: 2

Compression:

Stored size: 577 Bytes

Contents

/**
    A class that encapsulates information about an example,
    including the index at which the example was executed, as
    well as the example itself.
*/
@objc final public class ExampleMetadata {
    /**
        The example for which this metadata was collected.
    */
    public let example: Example

    /**
        The index at which this example was executed in the
        test suite.
    */
    public let exampleIndex: Int

    internal init(example: Example, exampleIndex: Int) {
        self.example = example
        self.exampleIndex = exampleIndex
    }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cocoapods-deintegrate-0.2.1 spec/fixtures/Project/Frameworks/Pods/Quick/Quick/ExampleMetadata.swift
cocoapods-deintegrate-0.2.0 spec/fixtures/Project/Frameworks/Pods/Quick/Quick/ExampleMetadata.swift