TestCount

public struct TestCount: AutoEquatable

Test Count contains some statistics regarding already ran tests.

  • The amount of how many tests have passed.

    Declaration

    Swift

    public let passes: Int
  • The amount of how many tests have failed. Tests that where skipped or were marked as todo count as passed.

    Declaration

    Swift

    public let failures: Int
  • The amount of all tests that have been run yet.

    Declaration

    Swift

    public var tests: Int