Testing asynchronous systems is hard. Not only does it require handling threads, timeouts and concurrency issues, but the intent of the test code can be obscured by all these details. Awaitility is a DSL that allows you to express expectations of an asynchronous system in a concise and easy to read manner. For example:
@Test
public void updatesCustomerStatus() throws Exception {
// Publish an asynchronous event:
publishEvent(updateCustomerStatusEvent);
// Awaitility lets you wait until the asynchronous operation completes:
await().atMost(5, SECONDS).until(customerStatusIsUpdated());
...
}- 2018-07-24: Awaitility
3.1.2is released with a newaliasmethod and many more Kotlin extension functions. See changelog for details. - 2018-06-29: Awaitility
3.1.1is released with bug fixes, improvements and a Kotlin extension. See changelog for details. - 2018-03-02: Awaitility
3.1.0is released with several improvements and changes. See changelog for details.
- Change log
- Awaitility on Ohloh
- Mailing list for questions and support
