gapic-generator-java
gapic-generator-java copied to clipboard
Introduce Async Testing Tool
Introduce Awaitility or another tool that can be used to test async operations. Ideally the code would be written something like
await().atMost(5, SECONDS).until(doSomething())
There are a probably a few spots in the codebase that can be enhanced to remove busy-waiting.