Packages

object TestAspect extends TimeoutVariants

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TestAspect
  2. TimeoutVariants
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract class PerTest[+LowerR, -UpperR, +LowerE, -UpperE] extends TestAspect[LowerR, UpperR, LowerE, UpperE]

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def after[R0, E0](effect: ZIO[R0, E0, Any]): TestAspect[Nothing, R0, E0, Any]

    Constructs an aspect that runs the specified effect after every test.

  5. def afterAll[R0](effect: ZIO[R0, Nothing, Any]): TestAspect[Nothing, R0, Nothing, Any]

    Constructs an aspect that runs the specified effect after all tests.

  6. def afterAllFailure[R0](f: ZIO[R0, Nothing, Any]): TestAspect[Nothing, R0, Nothing, Any]

    Constructs an aspect that runs the specified effect after all tests if there is at least one failure.

  7. def afterAllSuccess[R0](f: ZIO[R0, Nothing, Any]): TestAspect[Nothing, R0, Nothing, Any]

    Constructs an aspect that runs the specified effect after all tests if there are no failures.

  8. def afterFailure[R0, E0](effect: ZIO[R0, E0, Any]): TestAspect[Nothing, R0, E0, Any]

    Constructs an aspect that runs the specified effect after every failed test.

  9. def afterSuccess[R0, E0](effect: ZIO[R0, E0, Any]): TestAspect[Nothing, R0, E0, Any]

    Constructs an aspect that runs the specified effect after every successful test.

  10. def annotate[V](key: TestAnnotation[V], value: V): TestAspectPoly

    Annotates tests with the specified test annotation.

  11. def around[R0, E0](before: ZIO[R0, E0, Any], after: ZIO[R0, Nothing, Any]): TestAspect[Nothing, R0, E0, Any]

    A less powerful variant of around where the result of before is not required by after.

  12. def aroundAll[R0, E0](before: ZIO[R0, E0, Any], after: ZIO[R0, Nothing, Any]): TestAspect[Nothing, R0, E0, Any]

    A less powerful variant of aroundAll where the result of before is not required by after.

  13. def aroundAllWith[R0, E0, A0](before: ZIO[R0, E0, A0])(after: (A0) => ZIO[R0, Nothing, Any]): TestAspect[Nothing, R0, E0, Any]

    Constructs an aspect that evaluates all tests between two effects, before and after, where the result of before can be used in after.

  14. def aroundTest[R0, E0](scoped: ZIO[Scope with R0, TestFailure[E0], (TestSuccess) => ZIO[R0, TestFailure[E0], TestSuccess]]): TestAspect[Nothing, R0, E0, Any]

    Constructs an aspect that evaluates every test inside the context of the scoped function.

  15. def aroundWith[R0, E0, A0](before: ZIO[R0, E0, A0])(after: (A0) => ZIO[R0, Nothing, Any]): TestAspect[Nothing, R0, E0, Any]

    Constructs an aspect that evaluates every test between two effects, before and after, where the result of before can be used in after.

  16. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  17. def aspect[R0, E0](f: (ZIO[R0, TestFailure[E0], TestSuccess]) => ZIO[R0, TestFailure[E0], TestSuccess]): TestAspect[R0, R0, E0, E0]

    Constructs a simple monomorphic aspect that only works with the specified environment and error type.

  18. def before[R0, E0](effect: ZIO[R0, E0, Any]): TestAspect[Nothing, R0, E0, Any]

    Constructs an aspect that runs the specified effect before every test.

  19. def beforeAll[R0, E0](effect: ZIO[R0, E0, Any]): TestAspect[Nothing, R0, E0, Any]

    Constructs an aspect that runs the specified effect a single time before all tests.

  20. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  21. val debug: TestAspectPoly

    An aspect that runs each test with the TestConsole instance in the environment set to debug mode so that console output is rendered to standard output in addition to being written to the output buffer.

  22. def diagnose(duration: zio.Duration): TestAspectPoly

    An aspect that runs each test on a separate fiber and prints a fiber dump if the test fails or has not terminated within the specified duration.

  23. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  25. val eventually: TestAspectPoly

    An aspect that retries a test until success, without limit.

  26. val exceptJS: TestAspectPoly

    An aspect that runs tests on all platforms except ScalaJS.

  27. val exceptJVM: TestAspectPoly

    An aspect that runs tests on all platforms except the JVM.

  28. val exceptNative: TestAspectPoly

    An aspect that runs tests on all platforms except ScalaNative.

  29. val exceptScala2: TestAspectPoly

    An aspect that runs tests on all versions except Scala 2.

  30. val exceptScala212: TestAspectPoly

    An aspect that runs tests on all versions except Scala 2.12.

  31. val exceptScala213: TestAspectPoly

    An aspect that runs tests on all versions except Scala 2.13.

  32. val exceptScala3: TestAspectPoly

    An aspect that runs tests on all versions except Scala 3.

  33. def executionStrategy(exec: ExecutionStrategy): TestAspectPoly

    An aspect that sets suites to the specified execution strategy, but only if their current strategy is inherited (undefined).

  34. def failing[E0](assertion: (TestFailure[E0]) => Boolean): TestAspect[Nothing, Any, Nothing, E0]

    An aspect that makes a test that failed for the specified failure pass.

    An aspect that makes a test that failed for the specified failure pass. Note that the test will fail for other failures and also if it passes correctly.

  35. val failing: TestAspectPoly

    An aspect that makes a test that failed for any reason pass.

    An aspect that makes a test that failed for any reason pass. Note that if the test passes this aspect will make it fail.

  36. lazy val fibers: TestAspectPoly

    An aspect that records the state of fibers spawned by the current test in TestAnnotation.fibers.

    An aspect that records the state of fibers spawned by the current test in TestAnnotation.fibers. Applied by default in ZIOSpecAbstract. This aspect is required for the proper functioning of TestClock.adjust.

  37. def flaky(n: Int): TestAspectPoly

    An aspect that retries a test until success, with the specified limit, for use with flaky tests.

  38. val flaky: TestAspectPoly

    An aspect that retries a test until success, with a default limit, for use with flaky tests.

  39. val forked: TestAspectPoly

    An aspect that runs each test on its own separate fiber.

  40. def fromLayer[R0, E0](layer: ZLayer[R0, E0, Any]): TestAspect[Nothing, R0, E0, Any]

    An aspect that provides each test with the specified layer that does not produce any services.

  41. def fromLayerShared[R0, E0](layer: ZLayer[R0, E0, Any]): TestAspect[Nothing, R0, E0, Any]

    An aspect that provides all tests with a shared version of the specified layer that does not produce any services.

  42. def fromZIOAspect[LowerR, UpperR, LowerE, UpperE](zioAspect: ZIOAspect[LowerR, UpperR, TestFailure[LowerE], TestFailure[UpperE], TestSuccess, TestSuccess]): TestAspect[LowerR, UpperR, LowerE, UpperE]

    As aspect that runs each test with the specified ZIOAspect.

  43. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  44. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  45. val identity: TestAspectPoly

    An aspect that returns the tests unchanged

  46. def ifEnv(env: String)(assertion: (String) => Boolean): TestAspectPoly

    An aspect that only runs a test if the specified environment variable satisfies the specified assertion.

  47. def ifEnvNotSet(env: String): TestAspectPoly

    An aspect that only runs a test if the specified environment variable is not set.

  48. def ifEnvOption(env: String)(assertion: (Option[String]) => Boolean): TestAspectPoly

    An aspect that only runs a test if the specified optional environment variable satisfies the specified assertion.

  49. def ifEnvSet(env: String): TestAspectPoly

    An aspect that only runs a test if the specified environment variable is set.

  50. def ifProp(prop: String)(assertion: (String) => Boolean): TestAspectPoly

    An aspect that only runs a test if the specified Java property satisfies the specified assertion.

  51. def ifPropNotSet(env: String): TestAspectPoly

    An aspect that only runs a test if the specified Java property is not set.

  52. def ifPropOption(prop: String)(assertion: (Option[String]) => Boolean): TestAspectPoly

    An aspect that only runs a test if the specified optional Java property satisfies the specified assertion.

  53. def ifPropSet(prop: String): TestAspectPoly

    An aspect that only runs a test if the specified Java property is set.

  54. val ignore: TestAspectPoly

    An aspect that marks tests as ignored.

  55. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  56. def js[LowerR, UpperR, LowerE, UpperE](that: TestAspect[LowerR, UpperR, LowerE, UpperE]): TestAspect[LowerR, UpperR, LowerE, UpperE]

    An aspect that applies the specified aspect on ScalaJS.

  57. val jsOnly: TestAspectPoly

    An aspect that only runs tests on ScalaJS.

  58. def jvm[LowerR, UpperR, LowerE, UpperE](that: TestAspect[LowerR, UpperR, LowerE, UpperE]): TestAspect[LowerR, UpperR, LowerE, UpperE]

    An aspect that applies the specified aspect on the JVM.

  59. val jvmOnly: TestAspectPoly

    An aspect that only runs tests on the JVM.

  60. val mac: TestAspectPoly

    Runs only on Mac operating systems.

  61. def native[LowerR, UpperR, LowerE, UpperE](that: TestAspect[LowerR, UpperR, LowerE, UpperE]): TestAspect[LowerR, UpperR, LowerE, UpperE]

    An aspect that applies the specified aspect on ScalaNative.

  62. val nativeOnly: TestAspectPoly

    An aspect that only runs tests on ScalaNative.

  63. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  64. def nonFlaky(n: Int): TestAspectPoly

    An aspect that repeats the test a specified number of times, ensuring it is stable ("non-flaky").

    An aspect that repeats the test a specified number of times, ensuring it is stable ("non-flaky"). Stops at the first failure.

  65. val nonFlaky: TestAspectPoly

    An aspect that repeats the test a default number of times, ensuring it is stable ("non-flaky").

    An aspect that repeats the test a default number of times, ensuring it is stable ("non-flaky"). Stops at the first failure.

  66. def nonTermination(duration: zio.Duration): TestAspectPoly

    Constructs an aspect that requires a test to not terminate within the specified time.

  67. val nondeterministic: TestAspectPoly

    Sets the seed of the TestRandom instance in the environment to a random value before each test.

  68. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  69. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  70. def os(f: (OS) => Boolean): TestAspectPoly

    An aspect that runs only on operating systems accepted by the specified predicate.

  71. val parallel: TestAspectPoly

    An aspect that executes the members of a suite in parallel.

  72. def parallelN(n: Int): TestAspectPoly

    An aspect that executes the members of a suite in parallel, up to the specified number of concurrent fibers.

  73. def repeat[R0](schedule: Schedule[R0, TestSuccess, Any]): TestAspectAtLeastR[R0]

    An aspect that repeats successful tests according to a schedule.

  74. def repeats(n: Int): TestAspectPoly

    An aspect that runs each test with the number of times to repeat tests to ensure they are stable set to the specified value.

  75. def restore(restorable: UIO[Restorable]): TestAspectPoly

    An aspect that restores a given Restorable's state to its starting state after the test is run.

    An aspect that restores a given Restorable's state to its starting state after the test is run. Note that this is only useful when repeating tests.

  76. def restoreTestClock: TestAspectPoly

    An aspect that restores the TestClock's state to its starting state after the test is run.

    An aspect that restores the TestClock's state to its starting state after the test is run. Note that this is only useful when repeating tests.

  77. def restoreTestConsole: TestAspectPoly

    An aspect that restores the TestConsole's state to its starting state after the test is run.

    An aspect that restores the TestConsole's state to its starting state after the test is run. Note that this is only useful when repeating tests.

  78. def restoreTestEnvironment: TestAspectPoly

    An aspect that restores all state in the standard provided test environments (TestClock, TestConsole, TestRandom, and TestSystem) to their starting state after the test is run.

    An aspect that restores all state in the standard provided test environments (TestClock, TestConsole, TestRandom, and TestSystem) to their starting state after the test is run. Note that this is only useful when repeating tests.

  79. def restoreTestRandom: TestAspectPoly

    An aspect that restores the TestRandom's state to its starting state after the test is run.

    An aspect that restores the TestRandom's state to its starting state after the test is run. Note that this is only useful when repeating tests.

  80. def restoreTestSystem: TestAspectPoly

    An aspect that restores the TestSystem's state to its starting state after the test is run.

    An aspect that restores the TestSystem's state to its starting state after the test is run. Note that this is only useful when repeating tests.

  81. def retries(n: Int): TestAspectPoly

    An aspect that runs each test with the number of times to retry flaky tests set to the specified value.

  82. def retry[R0, E0](schedule: Schedule[R0, TestFailure[E0], Any]): TestAspect[Nothing, R0, Nothing, E0]

    An aspect that retries failed tests according to a schedule.

  83. def samples(n: Int): TestAspectPoly

    An aspect that runs each test with the number of sufficient samples to check for a random variable set to the specified value.

  84. def scala2[LowerR, UpperR, LowerE, UpperE](that: TestAspect[LowerR, UpperR, LowerE, UpperE]): TestAspect[LowerR, UpperR, LowerE, UpperE]

    An aspect that applies the specified aspect on Scala 2.

  85. def scala212[LowerR, UpperR, LowerE, UpperE](that: TestAspect[LowerR, UpperR, LowerE, UpperE]): TestAspect[LowerR, UpperR, LowerE, UpperE]

    An aspect that applies the specified aspect on Scala 2.12.

  86. val scala212Only: TestAspectPoly

    An aspect that only runs tests on Scala 2.12.

  87. def scala213[LowerR, UpperR, LowerE, UpperE](that: TestAspect[LowerR, UpperR, LowerE, UpperE]): TestAspect[LowerR, UpperR, LowerE, UpperE]

    An aspect that applies the specified aspect on Scala 2.13.

  88. val scala213Only: TestAspectPoly

    An aspect that only runs tests on Scala 2.13.

  89. val scala2Only: TestAspectPoly

    An aspect that only runs tests on Scala 2.

  90. def scala3[LowerR, UpperR, LowerE, UpperE](that: TestAspect[LowerR, UpperR, LowerE, UpperE]): TestAspect[LowerR, UpperR, LowerE, UpperE]

    An aspect that applies the specified aspect on Scala 3.

  91. val scala3Only: TestAspectPoly

    An aspect that only runs tests on Scala 3.

  92. val sequential: TestAspectPoly

    An aspect that executes the members of a suite sequentially.

  93. def setSeed(seed: => Long): TestAspectPoly

    Sets the seed of the TestRandom instance in the environment to the specified value before each test.

  94. def shrinks(n: Int): TestAspectPoly

    An aspect that runs each test with the maximum number of shrinkings to minimize large failures set to the specified value.

  95. val silent: TestAspectPoly

    An aspect that runs each test with the TestConsole instance in the environment set to silent mode so that console output is only written to the output buffer and not rendered to standard output.

  96. val silentLogging: TestAspectPoly

    As aspect that runs each test with the default console logger removed so that logs are only written to the output buffer and not rendered to standard output.

  97. def size(n: Int): TestAspectPoly

    An aspect that runs each test with the size set to the specified value.

  98. val success: TestAspectPoly

    An aspect that converts ignored tests into test failures.

  99. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  100. def tag(tag: String, tags: String*): TestAspectPoly

    Annotates tests with string tags.

  101. val timed: TestAspectPoly

    Annotates tests with their execution times.

  102. def timeout(duration: zio.Duration): TestAspectPoly

    An aspect that times out tests using the specified duration.

    An aspect that times out tests using the specified duration.

    duration

    maximum test duration

  103. def timeoutWarning(duration: zio.Duration): TestAspectPoly

    A test aspect that prints a warning to the console when a test takes longer than the specified duration.

    A test aspect that prints a warning to the console when a test takes longer than the specified duration.

    Definition Classes
    TimeoutVariants
  104. def toString(): String
    Definition Classes
    AnyRef → Any
  105. val unix: TestAspectPoly

    Runs only on Unix / Linux operating systems.

  106. def verify[R0, E0](condition: => ZIO[R0, E0, TestResult]): TestAspect[Nothing, R0, E0, Any]

    Verifies the specified post-condition after each test is run.

  107. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  108. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  109. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  110. val windows: TestAspectPoly

    Runs only on Windows operating systems.

  111. def withConfigProvider(configProvider: ConfigProvider): TestAspectPoly

    An aspect that runs tests with the specified config provider.

  112. lazy val withLiveClock: TestAspectPoly

    An aspect that runs tests with the live clock service.

  113. lazy val withLiveConsole: TestAspectPoly

    An aspect that runs tests with the live console service.

  114. lazy val withLiveEnvironment: TestAspectPoly

    An aspect that runs tests with the live default ZIO services.

  115. lazy val withLiveRandom: TestAspectPoly

    An aspect that runs tests with the live random service.

  116. lazy val withLiveSystem: TestAspectPoly

    An aspect that runs tests with the live system service.

  117. object PerTest

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  2. def sized(n: Int): TestAspectPoly

    An aspect that runs each test with the size set to the specified value.

    An aspect that runs each test with the size set to the specified value.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.2) use size

Inherited from TimeoutVariants

Inherited from AnyRef

Inherited from Any

Ungrouped