![]() | TestKitBase.Within Method |
Name | Description | |
---|---|---|
![]() | Within(TimeSpan, Action, Nullable<TimeSpan>) |
Execute code block while bounding its execution time between 0 seconds and max.
`within` blocks may be nested. All methods in this class which take maximum wait times are available in a version which implicitly uses the remaining time governed by the innermost enclosing `within` block. ![]() Note that the max duration is scaled using Dilated(TimeSpan) which uses the config value "akka.test.timefactor" |
![]() | Within<T>(TimeSpan, Func<T>, Nullable<TimeSpan>) |
Execute code block while bounding its execution time between 0 seconds and max.
`within` blocks may be nested. All methods in this class which take maximum wait times are available in a version which implicitly uses the remaining time governed by the innermost enclosing `within` block. ![]() Note that the max duration is scaled using Dilated(TimeSpan) which uses the config value "akka.test.timefactor" |
![]() | Within(TimeSpan, TimeSpan, Action, String, Nullable<TimeSpan>) |
Execute code block while bounding its execution time between min and max.
`within` blocks may be nested. All methods in this class which take maximum wait times are available in a version which implicitly uses the remaining time governed by the innermost enclosing `within` block. ![]() Note that the max duration is scaled using Dilated(TimeSpan) which uses the config value "akka.test.timefactor" |
![]() | Within<T>(TimeSpan, TimeSpan, Func<T>, String, Nullable<TimeSpan>) |
Execute code block while bounding its execution time between min and max.
`within` blocks may be nested. All methods in this class which take maximum wait times are available in a version which implicitly uses the remaining time governed by the innermost enclosing `within` block. ![]() Note that the max duration is scaled using Dilated(TimeSpan) which uses the config value "akka.test.timefactor" |