object FutureAssertions
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- FutureAssertions
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final class ExpectedFailureException[T] extends NoSuchElementException
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def assertAfter[V](delay: FiniteDuration, delayMechanism: DelayMechanism)(test: => Future[V])(implicit executionContext: ExecutionContext): Future[V]
Runs the test case after the specified delay
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def forAllParallel[T](data: Seq[T])(testCase: (T) => Future[Unit])(implicit ec: ExecutionContext, loggingContext: LoggingContext): Future[Unit]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def optionalAssertion(runs: Boolean, description: String)(assertions: => Future[_])(implicit loggingContext: LoggingContext): Future[_]
- def succeedsEventually[V](retryDelay: FiniteDuration = 100.millis, maxRetryDuration: FiniteDuration, delayMechanism: DelayMechanism, description: String)(test: => Future[V])(implicit ec: ExecutionContext, loggingContext: LoggingContext): Future[V]
Run the test every
retryDelay
up tomaxRetryDuration
.Run the test every
retryDelay
up tomaxRetryDuration
. The test case will run up toceil(maxRetryDuration / retryDelay)
times. The assertion will succeed as soon as any of the test case runs are successful. The assertion will fail if no test case runs are successful and themaxRetryDuration
is exceeded. - final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])