Awaitility Proxy

Adds proxy support for Awaitility

License

License

Apache 2.0
GroupId

GroupId

org.awaitility
ArtifactId

ArtifactId

awaitility-proxy
Last Version

Last Version

3.1.6
Release Date

Release Date

Type

Type

jar
Description

Description

Awaitility Proxy
Adds proxy support for Awaitility
Project URL

Project URL

http://awaitility.org

Download awaitility-proxy

How to add to project

<!-- https://jarcasting.com/artifacts/org.awaitility/awaitility-proxy/ -->
<dependency>
    <groupId>org.awaitility</groupId>
    <artifactId>awaitility-proxy</artifactId>
    <version>3.1.6</version>
</dependency>
// https://jarcasting.com/artifacts/org.awaitility/awaitility-proxy/
implementation 'org.awaitility:awaitility-proxy:3.1.6'
// https://jarcasting.com/artifacts/org.awaitility/awaitility-proxy/
implementation ("org.awaitility:awaitility-proxy:3.1.6")
'org.awaitility:awaitility-proxy:jar:3.1.6'
<dependency org="org.awaitility" name="awaitility-proxy" rev="3.1.6">
  <artifact name="awaitility-proxy" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.awaitility', module='awaitility-proxy', version='3.1.6')
)
libraryDependencies += "org.awaitility" % "awaitility-proxy" % "3.1.6"
[org.awaitility/awaitility-proxy "3.1.6"]

Dependencies

compile (2)

Group / Artifact Type Version
org.awaitility : awaitility jar 3.1.6
net.bytebuddy : byte-buddy jar 1.7.0

test (2)

Group / Artifact Type Version
junit : junit jar 4.12
org.awaitility : awaitility-test-support jar 3.1.6

Project Modules

There are no modules declared in this project.

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() {
    // Publish an asynchronous message to a broker (e.g. RabbitMQ):
    messageBroker.publishMessage(updateCustomerStatusMessage);
    // Awaitility lets you wait until the asynchronous operation completes:
    await().atMost(5, SECONDS).until(customerStatusIsUpdated());
    ...
}

News

  • 2020-05-19: Awaitility 4.0.3 is released. This release includes updates to ConditionEvaluationLogger as well as several depdency updates. If you're using the Groovy DSL beaware that Groovy has been upgraded from 2.x to 3.x. See changelog for details.
  • 2020-01-03: Awaitility 4.0.2 is released. This release includes support for asserting that a condition is maintained for specific duration, improvments to ConditionEvaluationListener as well as several bug fixes and other improvements. See changelog for details.
  • 2019-09-06: Awaitility 4.0.1 is released and it fixes a regression issue in which the condition evaluation duration could be evaluated to a negative number of nanoseconds on Windows. It also drops the dependency to objenesis since it's no longer used after moving to Java 8. See changelog for details.

Older news

Documentation

Links

Buy Me A Coffee

org.awaitility

Awaitility

Java DSL for synchronizing asynchronous operations

Versions

Version
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.0
3.0.0-rc3
3.0.0-rc2
3.0.0-rc1