I found the following function calls in several frames that seem to me as if the framework extends some base classes. Some examples:
within(500 millis)
or
"Testcase description" in
{ .... }
The first example returns an object of duration with a duration of 500 milliseconds from akka, and the second returns the definition of a test table from scalatest.
I would like to know how this behavior is achieved and what it is called.
source
share