Git Product home page Git Product logo

awaitility's Introduction

Awaitility

Build Status Maven Central Javadoc

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());
    ...
}

News

  • 2017-04-28: Awaitility 3.0.0 is released with lots of improvements and changes to 2.0.0. See release notes and changelog for details.
  • 2017-04-07: Awaitility 3.0.0-rc3 is released. It allows you to specify poll thread(s) and changed the behavior of untilAsserted so that lambda expressions are allowed to throw checked exceptions. See changelog for details.
  • 2017-03-31: Awaitility 3.0.0-rc2 is released. It fixes some bugs that were found in the previous release candidate and it includes the ability to specify the poll executor service and uses one less thread by default. See changelog for details.

Older news

Documentation

Links

awaitility's People

Contributors

johanhaleby avatar jankronquist avatar dzieciou avatar szpak avatar turbo87 avatar pkubowicz avatar ligasgr avatar spoonman avatar mkordas avatar cschneider avatar andyglick avatar kalgon avatar valery1707 avatar tschulte avatar roberttaylor426 avatar kelebra avatar kovalskyi avatar magwo avatar jjst avatar hugojosefson avatar geoff2k avatar alechenninger avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.