Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AssertSpec ¶
type AssertSpec[T any] interface { Source(source ro.Observable[T]) AssertSpec[T] ExpectNext(value T, msgAndArgs ...any) AssertSpec[T] ExpectNextSeq(items ...T) AssertSpec[T] ExpectError(err error, msgAndArgs ...any) AssertSpec[T] ExpectComplete(msgAndArgs ...any) AssertSpec[T] Verify() VerifyWithContext(ctx context.Context) }
AssertSpec is an interface that defines the methods to assert the behavior of an observable sequence. It is inspired by Flux.
Implementing this interface is optional. It is used to provide a more fluent API across different testing frameworks.
Click to show internal directories.
Click to hide internal directories.