[BAEL-6027] Add example for Awaitility and Thread.sleep comparison (#13450)

* Add example for Awaitility and Thread.sleep comparison

* Fix unit test method name and indentation.

* Use property in pom.xml for awaitility dependency version.

---------

Co-authored-by: Uhrin Attila <attila.uhrin@frontendart.com>
This commit is contained in:
AttilaUhrin
2023-02-18 04:04:25 +01:00
committed by GitHub
parent e8d3a39eb6
commit 62f75e3859
3 changed files with 88 additions and 0 deletions

View File

@@ -24,4 +24,16 @@
</resources>
</build>
<properties>
<awaitility.version>4.2.0</awaitility.version>
</properties>
<dependencies>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>${awaitility.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>