This repository was archived by the owner on Jul 10, 2024. It is now read-only.

Description
The junit5:AssertMethod concept does not support all assert methods from jUnit 5, thus leading to false positives in the constraint junit:TestMethodWithoutAssertion constraint. This is due to the fact that assert methods are considered as such if the have the following signature void assert.*
Following methods will not be matched:
- java.lang.Throwable assertThrows
- T assertTimeout*