class PersistenceTestKit extends PersistenceTestKitOps[PersistentRepr, JournalOperation] with ExpectOps[PersistentRepr] with HasStorage[JournalOperation, PersistentRepr]
Class for testing events of persistent actors.
NOTE! ActorSystem must be configured with PersistenceTestKitPlugin. The configuration can be retrieved with PersistenceTestKitPlugin.config.
- Annotations
- @ApiMayChange()
- Source
- PersistenceTestKit.scala
- Alphabetic
- By Inheritance
- PersistenceTestKit
- HasStorage
- ExpectOps
- PersistenceTestKitOps
- CommonTestKitOps
- PolicyOpsTestKit
- ClearOps
- ClearPreservingSeqNums
- RejectSupport
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
-  new PersistenceTestKit(system: ActorSystem)
Value Members
-   final  def !=(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def ##: Int- Definition Classes
- AnyRef → Any
 
-    def +(other: String): String- Implicit
- This member is added by an implicit conversion from PersistenceTestKit toany2stringadd[PersistenceTestKit] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
 
-    def ->[B](y: B): (PersistenceTestKit, B)- Implicit
- This member is added by an implicit conversion from PersistenceTestKit toArrowAssoc[PersistenceTestKit] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
 
-   final  def ==(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def asInstanceOf[T0]: T0- Definition Classes
- Any
 
-    def clearAll(): UnitClear all data from the storage. Clear all data from the storage. NOTE! Also clears sequence numbers in storage! - Definition Classes
- ClearOps
- See also
- ClearPreservingSeqNums.clearAllPreservingSeqNumbers() 
 
-    def clearAllPreservingSeqNumbers(): UnitClear all data in the storage preserving sequence numbers. Clear all data in the storage preserving sequence numbers. - Definition Classes
- ClearPreservingSeqNums
- See also
- ClearOps.clearAll() 
 
-    def clearByIdPreservingSeqNumbers(persistenceId: String): UnitClear all data in the storage for particular persistence id preserving sequence numbers. Clear all data in the storage for particular persistence id preserving sequence numbers. - Definition Classes
- ClearPreservingSeqNums
- See also
- ClearOps.clearByPersistenceId() 
 
-    def clearByPersistenceId(persistenceId: String): UnitClear all data from the storage for particular persistence id. Clear all data from the storage for particular persistence id. NOTE! Also clears sequence number in the storage! - Definition Classes
- ClearOps
- See also
- ClearPreservingSeqNums.clearByIdPreservingSeqNumbers() 
 
-    def clone(): AnyRef- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
 
-    def ensuring(cond: (PersistenceTestKit) => Boolean, msg: => Any): PersistenceTestKit- Implicit
- This member is added by an implicit conversion from PersistenceTestKit toEnsuring[PersistenceTestKit] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
 
-    def ensuring(cond: (PersistenceTestKit) => Boolean): PersistenceTestKit- Implicit
- This member is added by an implicit conversion from PersistenceTestKit toEnsuring[PersistenceTestKit] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
 
-    def ensuring(cond: Boolean, msg: => Any): PersistenceTestKit- Implicit
- This member is added by an implicit conversion from PersistenceTestKit toEnsuring[PersistenceTestKit] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
 
-    def ensuring(cond: Boolean): PersistenceTestKit- Implicit
- This member is added by an implicit conversion from PersistenceTestKit toEnsuring[PersistenceTestKit] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
 
-   final  def eq(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-    def equals(arg0: AnyRef): Boolean- Definition Classes
- AnyRef → Any
 
-    def expectNextPersisted[A](persistenceId: String, event: A, max: FiniteDuration): ACheck for maxtime that next persisted in storage for particular persistence id event/snapshot wasevent.Check for maxtime that next persisted in storage for particular persistence id event/snapshot wasevent.- Definition Classes
- ExpectOps
 
-    def expectNextPersisted[A](persistenceId: String, event: A): ACheck that next persisted in storage for particular persistence id event/snapshot was event.Check that next persisted in storage for particular persistence id event/snapshot was event.- Definition Classes
- ExpectOps
 
-    def expectNextPersistedClass[A](persistenceId: String, cla: Class[A], max: FiniteDuration): ACheck for maxtime that next persisted in storage for particular persistence id event/snapshot has expected type.Check for maxtime that next persisted in storage for particular persistence id event/snapshot has expected type.- Definition Classes
- ExpectOps
 
-    def expectNextPersistedClass[A](persistenceId: String, cla: Class[A]): ACheck that next persisted in storage for particular persistence id event/snapshot has expected type. Check that next persisted in storage for particular persistence id event/snapshot has expected type. - Definition Classes
- ExpectOps
 
-    def expectNextPersistedType[A](persistenceId: String, max: FiniteDuration)(implicit t: ClassTag[A]): ACheck for maxtime that next persisted in storage for particular persistence id event/snapshot has expected type.Check for maxtime that next persisted in storage for particular persistence id event/snapshot has expected type.- Definition Classes
- ExpectOps
 
-    def expectNextPersistedType[A](persistenceId: String)(implicit t: ClassTag[A]): ACheck that next persisted in storage for particular persistence id event/snapshot has expected type. Check that next persisted in storage for particular persistence id event/snapshot has expected type. - Definition Classes
- ExpectOps
 
-    def expectNothingPersisted(persistenceId: String, max: FiniteDuration): UnitCheck for maxtime that nothing was persisted in storage for particular persistence id.Check for maxtime that nothing was persisted in storage for particular persistence id.- Definition Classes
- ExpectOps
 
-    def expectNothingPersisted(persistenceId: String): UnitCheck that nothing was persisted in storage for particular persistence id. Check that nothing was persisted in storage for particular persistence id. - Definition Classes
- ExpectOps
 
-    def failNextDelete(persistenceId: String): UnitFail next delete from storage attempt with default exception for particular persistence id. Fail next delete from storage attempt with default exception for particular persistence id. - Definition Classes
- CommonTestKitOps
 
-    def failNextDelete(persistenceId: String, cause: Throwable): UnitFail next delete from storage attempt with causeexception for particular persistence id.Fail next delete from storage attempt with causeexception for particular persistence id.- Definition Classes
- CommonTestKitOps
 
-    def failNextDelete(): UnitFail next delete from storage attempt with default exception for any persistence id. Fail next delete from storage attempt with default exception for any persistence id. - Definition Classes
- CommonTestKitOps
 
-    def failNextDelete(cause: Throwable): UnitFail next delete from storage attempt with causeexception for any persistence id.Fail next delete from storage attempt with causeexception for any persistence id.- Definition Classes
- CommonTestKitOps
 
-    def failNextNDeletes(persistenceId: String, n: Int, cause: Throwable): UnitFail next n delete from storage attempts with causeexception for particular persistence id.Fail next n delete from storage attempts with causeexception for particular persistence id.- Definition Classes
- PersistenceTestKit → CommonTestKitOps
 
-    def failNextNDeletes(n: Int, cause: Throwable): UnitFail next n delete from storage attempts with causeexception for any persistence id.Fail next n delete from storage attempts with causeexception for any persistence id.- Definition Classes
- PersistenceTestKit → CommonTestKitOps
 
-    def failNextNDeletes(persistenceId: String, n: Int): UnitFail next n delete from storage attempts with default exception for particular persistence id. Fail next n delete from storage attempts with default exception for particular persistence id. - Definition Classes
- CommonTestKitOps
 
-    def failNextNDeletes(n: Int): UnitFail next n delete from storage attempts with default exception for any persistence id. Fail next n delete from storage attempts with default exception for any persistence id. - Definition Classes
- CommonTestKitOps
 
-    def failNextNOps(n: Int, cause: Throwable): UnitFail nfollowing journal operations regardless of their type.Fail nfollowing journal operations regardless of their type. Fails operations with thecauseexception.- Definition Classes
- PolicyOpsTestKit
 
-    def failNextNOps(n: Int): UnitFail n following journal operations regardless of their type. Fail n following journal operations regardless of their type. Fails operations with default ExpectedFailureexception.- Definition Classes
- PolicyOpsTestKit
 
-    def failNextNOpsCond(cond: (String, JournalOperation) => Boolean, n: Int, cause: Throwable): UnitFail nfollowing journal operations depending on the conditioncond.Fail nfollowing journal operations depending on the conditioncond. Failure triggers, whencondreturns true. Fails operations with thecauseexception.- Definition Classes
- PolicyOpsTestKit
 
-    def failNextNOpsCond(cond: (String, JournalOperation) => Boolean, n: Int): UnitFail nfollowing journal operations depending on the conditioncond.Fail nfollowing journal operations depending on the conditioncond. Failure triggers, whencondreturns true. Fails operations with defaultExpectedFailureexception.- Definition Classes
- PolicyOpsTestKit
 
-    def failNextNPersisted(n: Int, cause: Throwable): UnitFail next nwrite operations with thecauseexception for any persistence id.Fail next nwrite operations with thecauseexception for any persistence id.- Definition Classes
- PersistenceTestKit → CommonTestKitOps
 
-    def failNextNPersisted(persistenceId: String, n: Int, cause: Throwable): UnitFail next nwrite operations with thecauseexception for particular persistence id.Fail next nwrite operations with thecauseexception for particular persistence id.- Definition Classes
- PersistenceTestKit → CommonTestKitOps
 
-    def failNextNPersisted(n: Int): UnitFail next nwrite operations with default exception for any persistence id.Fail next nwrite operations with default exception for any persistence id.- Definition Classes
- CommonTestKitOps
 
-    def failNextNPersisted(persistenceId: String, n: Int): UnitFail next nwrite operations for particular persistence id.Fail next nwrite operations for particular persistence id.- Definition Classes
- CommonTestKitOps
 
-    def failNextNReads(persistenceId: String, n: Int, cause: Throwable): UnitFail next n read from storage (recovery) attempts with causeexception for particular persistence id.Fail next n read from storage (recovery) attempts with causeexception for particular persistence id.- Definition Classes
- PersistenceTestKit → CommonTestKitOps
 
-    def failNextNReads(n: Int, cause: Throwable): UnitFail next n read from storage (recovery) attempts with causeexception for any persistence id.Fail next n read from storage (recovery) attempts with causeexception for any persistence id.- Definition Classes
- PersistenceTestKit → CommonTestKitOps
 
-    def failNextNReads(persistenceId: String, n: Int): UnitFail next n read from storage (recovery) attempts with default exception for particular persistence id. Fail next n read from storage (recovery) attempts with default exception for particular persistence id. - Definition Classes
- CommonTestKitOps
 
-    def failNextNReads(n: Int): UnitFail next n read from storage (recovery) attempts with default exception for any persistence id. Fail next n read from storage (recovery) attempts with default exception for any persistence id. - Definition Classes
- CommonTestKitOps
 
-    def failNextPersisted(): UnitFail next write operation with default exception for any persistence id. Fail next write operation with default exception for any persistence id. - Definition Classes
- CommonTestKitOps
 
-    def failNextPersisted(cause: Throwable): UnitFail next write operation with causeexception for any persistence id.Fail next write operation with causeexception for any persistence id.- Definition Classes
- CommonTestKitOps
 
-    def failNextPersisted(persistenceId: String): UnitFail next write operation with default exception for particular persistence id. Fail next write operation with default exception for particular persistence id. - Definition Classes
- CommonTestKitOps
 
-    def failNextPersisted(persistenceId: String, cause: Throwable): UnitFail next write operation with causeexception for particular persistence id.Fail next write operation with causeexception for particular persistence id.- Definition Classes
- CommonTestKitOps
 
-    def failNextRead(persistenceId: String): UnitFail next read from storage (recovery) attempt with default exception for any persistence id. Fail next read from storage (recovery) attempt with default exception for any persistence id. - Definition Classes
- CommonTestKitOps
 
-    def failNextRead(persistenceId: String, cause: Throwable): UnitFail next read from storage (recovery) attempt with causeexception for particular persistence id.Fail next read from storage (recovery) attempt with causeexception for particular persistence id.- Definition Classes
- CommonTestKitOps
 
-    def failNextRead(): UnitFail next read from storage (recovery) attempt with default exception for any persistence id. Fail next read from storage (recovery) attempt with default exception for any persistence id. - Definition Classes
- CommonTestKitOps
 
-    def failNextRead(cause: Throwable): UnitFail next read from storage (recovery) attempt with causeexception for any persistence id.Fail next read from storage (recovery) attempt with causeexception for any persistence id.- Definition Classes
- CommonTestKitOps
 
-   final  def getClass(): Class[_ <: AnyRef]- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-    def getItem(persistenceId: String, nextInd: Int): Option[Any]- Definition Classes
- ExpectOps
 
-    def hashCode(): Int- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @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
- @HotSpotIntrinsicCandidate() @native()
 
-   final  def notifyAll(): Unit- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-    def persistForRecovery(persistenceId: String, events: Seq[Any]): UnitPersist snapshotsinto storage in order.Persist snapshotsinto storage in order.- Definition Classes
- PersistenceTestKit → PersistenceTestKitOps
 
-    def persistedInStorage(persistenceId: String): Seq[Any]Retrieve all snapshots saved in storage by persistence id. Retrieve all snapshots saved in storage by persistence id. - Definition Classes
- PersistenceTestKit → PersistenceTestKitOps
 
-    def receivePersisted[A](persistenceId: String, n: Int, cla: Class[A], max: FiniteDuration): Seq[A]Receive for maxtime nextnevents/snapshots that have been persisted in the storage.Receive for maxtime nextnevents/snapshots that have been persisted in the storage.- Definition Classes
- ExpectOps
 
-    def receivePersisted[A](persistenceId: String, n: Int, cla: Class[A]): Seq[A]Receive next nevents/snapshots that have been persisted in the storage.Receive next nevents/snapshots that have been persisted in the storage.- Definition Classes
- ExpectOps
 
-    def receivePersisted[A](persistenceId: String, n: Int)(implicit t: ClassTag[A]): Seq[A]Receive next nevents/snapshots that have been persisted in the storage.Receive next nevents/snapshots that have been persisted in the storage.- Definition Classes
- ExpectOps
 
-    def receivePersisted[A](persistenceId: String, n: Int, max: FiniteDuration)(implicit t: ClassTag[A]): Seq[A]Receive for maxtime nextnevents/snapshots that have been persisted in the storage.Receive for maxtime nextnevents/snapshots that have been persisted in the storage.- Definition Classes
- ExpectOps
 
-    def rejectNextDelete(persistenceId: String, cause: Throwable): UnitReject next delete from storage operations for particular persistence id with causeexception.Reject next delete from storage operations for particular persistence id with causeexception.- Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextDelete(persistenceId: String): UnitReject next delete from storage operations for particular persistence id with default exception. Reject next delete from storage operations for particular persistence id with default exception. - Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextDelete(cause: Throwable): UnitReject next delete from storage operation for any persistence id with causeexception.Reject next delete from storage operation for any persistence id with causeexception.- Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextDelete(): UnitReject next delete from storage operation for any persistence id with default exception. Reject next delete from storage operation for any persistence id with default exception. - Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextNDeletes(persistenceId: String, n: Int, cause: Throwable): UnitReject next n delete from storage operations for particular persistence id with causeexception.Reject next n delete from storage operations for particular persistence id with causeexception.- Definition Classes
- PersistenceTestKit → PersistenceTestKitOps
 
-    def rejectNextNDeletes(n: Int, cause: Throwable): UnitReject next n delete from storage operations for any persistence id with causeexception.Reject next n delete from storage operations for any persistence id with causeexception.- Definition Classes
- PersistenceTestKit → PersistenceTestKitOps
 
-    def rejectNextNDeletes(persistenceId: String, n: Int): UnitReject next n delete from storage operations for particular persistence id with default exception. Reject next n delete from storage operations for particular persistence id with default exception. - Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextNDeletes(n: Int): UnitReject next n delete from storage operations for any persistence id with default exception. Reject next n delete from storage operations for any persistence id with default exception. - Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextNOps(n: Int, cause: Throwable): UnitReject nfollowing journal operations regardless of their type.Reject nfollowing journal operations regardless of their type. Rejects operations with thecauseexception.- Definition Classes
- RejectSupport
 
-    def rejectNextNOps(n: Int): UnitReject n following journal operations regardless of their type. Reject n following journal operations regardless of their type. Rejects operations with default ExpectedRejectionexception.- Definition Classes
- RejectSupport
 
-    def rejectNextNOpsCond(cond: (String, JournalOperation) => Boolean, n: Int, cause: Throwable): UnitReject nfollowing journal operations depending on the conditioncond.Reject nfollowing journal operations depending on the conditioncond. Rejection triggers, whencondreturns true. Rejects operations with thecauseexception.- Definition Classes
- RejectSupport
 
-    def rejectNextNOpsCond(cond: (String, JournalOperation) => Boolean, n: Int): UnitReject nfollowing journal operations depending on the conditioncond.Reject nfollowing journal operations depending on the conditioncond. Rejection triggers, whencondreturns true. Reject operations with defaultExpectedRejectionexception.- Definition Classes
- RejectSupport
 
-    def rejectNextNPersisted(n: Int, cause: Throwable): UnitReject next n save in storage operations for any persistence id with causeexception.Reject next n save in storage operations for any persistence id with causeexception.- Definition Classes
- PersistenceTestKit → PersistenceTestKitOps
 
-    def rejectNextNPersisted(persistenceId: String, n: Int, cause: Throwable): UnitReject next n save in storage operations for particular persistence id with causeexception.Reject next n save in storage operations for particular persistence id with causeexception.- Definition Classes
- PersistenceTestKit → PersistenceTestKitOps
 
-    def rejectNextNPersisted(n: Int): UnitReject next n save in storage operations for any persistence id with default exception. Reject next n save in storage operations for any persistence id with default exception. - Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextNPersisted(persistenceId: String, n: Int): UnitReject next n save in storage operations for particular persistence id with default exception. Reject next n save in storage operations for particular persistence id with default exception. - Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextNReads(persistenceId: String, n: Int, cause: Throwable): UnitReject next n read from storage operations for particular persistence id with causeexception.Reject next n read from storage operations for particular persistence id with causeexception.- Definition Classes
- PersistenceTestKit → PersistenceTestKitOps
 
-    def rejectNextNReads(n: Int, cause: Throwable): UnitReject next n read from storage operations for any persistence id with causeexception.Reject next n read from storage operations for any persistence id with causeexception.- Definition Classes
- PersistenceTestKit → PersistenceTestKitOps
 
-    def rejectNextNReads(persistenceId: String, n: Int): UnitReject next n read from storage operations for particular persistence id with default exception. Reject next n read from storage operations for particular persistence id with default exception. - Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextNReads(n: Int): UnitReject next n read from storage operations for any persistence id with default exception. Reject next n read from storage operations for any persistence id with default exception. - Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextPersisted(): UnitReject next save in storage operation for any persistence id with default exception. Reject next save in storage operation for any persistence id with default exception. - Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextPersisted(cause: Throwable): UnitReject next save in storage operation for any persistence id with causeexception.Reject next save in storage operation for any persistence id with causeexception.- Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextPersisted(persistenceId: String, cause: Throwable): UnitReject next save in storage operation for particular persistence id with causeexception.Reject next save in storage operation for particular persistence id with causeexception.- Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextPersisted(persistenceId: String): UnitReject next save in storage operation for particular persistence id with default exception. Reject next save in storage operation for particular persistence id with default exception. - Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextRead(persistenceId: String, cause: Throwable): UnitReject next read from storage operation for particular persistence id with causeexception.Reject next read from storage operation for particular persistence id with causeexception.- Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextRead(persistenceId: String): UnitReject next read from storage operation for particular persistence id with default exception. Reject next read from storage operation for particular persistence id with default exception. - Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextRead(cause: Throwable): UnitReject next read from storage operation for any persistence id with causeexception.Reject next read from storage operation for any persistence id with causeexception.- Definition Classes
- PersistenceTestKitOps
 
-    def rejectNextRead(): UnitReject next read from storage operation for any persistence id with default exception. Reject next read from storage operation for any persistence id with default exception. - Definition Classes
- PersistenceTestKitOps
 
-    def resetPolicy(): UnitReturns default policy if it was changed by PolicyOpsTestKit.this.withPolicy(). Returns default policy if it was changed by PolicyOpsTestKit.this.withPolicy(). - Definition Classes
- PolicyOpsTestKit
 
-    val storage: EventStorage- Attributes
- protected
- Definition Classes
- PersistenceTestKit → HasStorage
 
-   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])
 
-    def withPolicy(policy: EventStorage.JournalPolicies.PolicyType): PersistenceTestKit.this.typeSet new processing policy for journal operations. Set new processing policy for journal operations. NOTE! Overrides previously invoked failNext...orrejectNext...- Definition Classes
- PolicyOpsTestKit
 
Deprecated Value Members
-    def finalize(): Unit- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
- (Since version 9) 
 
-    def formatted(fmtstr: String): String- Implicit
- This member is added by an implicit conversion from PersistenceTestKit toStringFormat[PersistenceTestKit] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
- (Since version 2.12.16) Use - formatString.format(value)instead of- value.formatted(formatString), or use the- f""string interpolator. In Java 15 and later,- formattedresolves to the new method in String which has reversed parameters.
 
-    def →[B](y: B): (PersistenceTestKit, B)- Implicit
- This member is added by an implicit conversion from PersistenceTestKit toArrowAssoc[PersistenceTestKit] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
- (Since version 2.13.0) Use - ->instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.