TestSessionState

public enum TestSessionState

The TestSessionState enum describes the various states a test session can be in.

  • Indicates that no tests have been performed during the session.

    Declaration

    Swift

    case noTest
  • Indicates that the test session includes one successful test.

    Declaration

    Swift

    case goodTestFirst
  • Indicates that the test session includes one test that wasn’t able to be processed.

    Declaration

    Swift

    case notProcessedTestFirst
  • Indicates that the test session includes two complete tests that aren’t reproducible.

    Declaration

    Swift

    case notReproducibleTestFirst
  • Indicates that the test session has concluded with non-reproducible results.

    Declaration

    Swift

    case notReproducibleTestFinal
  • Indicates that the test session has concluded with reproducible results.

    Declaration

    Swift

    case reproducibleTestFinal
  • Indiciates that the test session has concluded with at least two non-processable tests.

    Declaration

    Swift

    case notProcessedTestFinal