Package akka.persistence.scalatest
Interface MayVerb
-
- All Known Implementing Classes:
JavaJournalPerfSpec
,JavaJournalSpec
,JavaSnapshotStoreSpec
,JournalPerfSpec
,JournalSpec
,SnapshotStoreSpec
public interface MayVerb
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
MayVerb.StringMayWrapperForVerb
static class
MayVerb.TestCanceledByFailure
static class
MayVerb.TestCanceledByFailure$
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MayVerb.StringMayWrapperForVerb
convertToStringMayWrapper(java.lang.String o)
Implicitly converts an object of typeString
to aStringMayWrapper
, to enablemay
methods to be invokable on that object.int
mayVerbStacktraceContextFrames()
Configurable number of frames to be shown when a MAY test fails (is canceled).void
optional(java.lang.String whenSkippedMessage, scala.Function0<scala.runtime.BoxedUnit> body)
-
-
-
Method Detail
-
mayVerbStacktraceContextFrames
int mayVerbStacktraceContextFrames()
Configurable number of frames to be shown when a MAY test fails (is canceled).Defaults to
3
. Must be greater than0
.
-
optional
void optional(java.lang.String whenSkippedMessage, scala.Function0<scala.runtime.BoxedUnit> body)
-
convertToStringMayWrapper
MayVerb.StringMayWrapperForVerb convertToStringMayWrapper(java.lang.String o)
Implicitly converts an object of typeString
to aStringMayWrapper
, to enablemay
methods to be invokable on that object.
-
-