I am locking for a simple way to fetch all FIXMEs inside my source code within a JUnit test. If this list contains entries the test shell fail and print out all collected FIXMEs.
The source code is written in Java and contains many 10,000 classes. I know, there are a lot of other possibilities to get the FIXMEs. For instance I have also a CI/CD environment where you can see all TODOs, FIXMEs and that stuff.
But if I would have a JUnit test I do not have to look here and there to get all the infos anymore, I would just have a look to my tests. Are there any libs etc. to do such things or do I have to write it by myself? Thanks a lot!