kotlin | Rx |
---|---|
- Clear tests: write clean, readable and simple tests in scala-test 'should style'.
- Easy to extend: create custom matchers for complex test cases or just for more readable code.
- Simple to use: same API as RxJava assertions you already know.
Observable.just("Hello RxTest!")
.test {
it shouldEmit "Hello RxTest!"
it should complete()
it shouldHave noErrors()
}
-
Components
dependencies {
testImplementation 'com.rubylichtenstein:rxtest:1.0.7'
}
<dependency>
<groupId>com.rubylichtenstein</groupId>
<artifactId>rxtest</artifactId>
<version>1.0.7</version>
<type>pom</type>
</dependency>
For bugs, questions and discussions please use the Github Issues.
Welcome :)