0

We add TODOs to our code whenever there is a dependency from another team member. Then we slowly resolve all TODOs until our code works. How can I make our build fail when there are any unresolved TODOs ?

Jed Cua
  • 251
  • 2
  • 11

1 Answers1

0

Write a Junit test for your todo. It will fail if the the todo was not resolved.

J Fabian Meier
  • 33,516
  • 10
  • 64
  • 142