cschneider
(Christian Schneider)
1
I am getting the warning “Add at least one assertion to this test case.”
My test method ends like this:
Awaitility.await().until(checker::isAvailable);
This is factually an assertion. How can I make sure sonar does not show the warning if I assert via Awaitility?
Michael
(Michael Gumowski)
4
Hello @cschneider,
Thansk for the feedback. The Awaitility framework is indeed not yet covered by the rule S2699.
This ticket should fix this: SONARJAVA-3334
Cheers,
Michael
cschneider
(Christian Schneider)
5
Many thanks. Looking forward to it.
Christian