Skip to content
This repository has been archived by the owner on Feb 23, 2022. It is now read-only.

Commit

Permalink
Prepare next development iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
sockeqwe committed Nov 2, 2019
1 parent 8838d07 commit 2977087
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ What this library will do is:
emissions shouldEmitNext 1
emissions shouldEmitNext 2
emissions shouldEmitNext 3 // although this emission happens later, the test execution will wait here until next emission (or fails with timeout)

emissions.cleanUp() // releases resources to avoid OutOfMemoryExceptions
}
```

Expand All @@ -44,7 +46,9 @@ What this library will do is:
// we don't miss any emissions that happened async. in the meantime.
Thread.sleep(1000)
emissions shouldEmitNext 2
emissions shouldEmitNext 3
emissions shouldEmitNext 3

emissions.cleanUp() // releases resources to avoid OutOfMemoryExceptions
}
```

Expand All @@ -65,6 +69,8 @@ fun shouldEmit_1_2_3(){
)

emissions.shouldEmitNext(1,2,3) // you can also use this instead of infix

emissions.cleanUp() // releases resources to avoid OutOfMemoryExceptions
}
```

Expand All @@ -77,12 +83,12 @@ Coming soon.
On maven central:

```gradle
implementation 'com.freeletics.flow.test:recorder:0.1.0'
implementation 'com.freeletics.flow.test:recorder:0.2.0'
```

## Snapshot
Latest development snapshot (whatever is on master is published as snapshot):

```gradle
implementation 'com.freeletics.flow.test:recorder:0.1.1-SNAPSHOT'
implementation 'com.freeletics.flow.test:recorder:0.2.1-SNAPSHOT'
```
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
kotlin.code.style=official


VERSION_NAME=0.2.0
VERSION_NAME=0.2.1-SNAPSHOT
GROUP=com.freeletics.flow.test

POM_INCEPTION_YEAR=2019
Expand Down

0 comments on commit 2977087

Please sign in to comment.