TerminationMatchers

This trait provides matchers to check if a block of code is terminating or not

Companion:
object
class Object
trait Matchable
class Any

Value members

Inherited methods

def terminate[T](retries: Int, sleep: Duration)(using ee: ExecutionEnv): TerminationMatcher[T]

this matcher will check if a block of code terminates within a given duration, and a given number of retries

this matcher will check if a block of code terminates within a given duration, and a given number of retries

Inherited from:
TerminationBaseMatchers (hidden)
def terminate[T](sleep: Duration)(using ee: ExecutionEnv): TerminationMatcher[T]

this matcher will check if a block of code terminates within a given duration, and a given number of retries

this matcher will check if a block of code terminates within a given duration, and a given number of retries

Inherited from:
TerminationBaseMatchers (hidden)
def terminate[T](retries: Int)(using ee: ExecutionEnv): TerminationMatcher[T]

this matcher will check if a block of code terminates within a given duration, and a given number of retries

this matcher will check if a block of code terminates within a given duration, and a given number of retries

Inherited from:
TerminationBaseMatchers (hidden)
def terminate[T](using ee: ExecutionEnv): TerminationMatcher[T]

this matcher will check if a block of code terminates

this matcher will check if a block of code terminates

Inherited from:
TerminationBaseMatchers (hidden)