In android, how can I make sure that developers always write unit test of each method they wrote? Is there a lint or klint library or custom code to check that, for example If i have written a function, lint should ask in warning that if you have written its unit test or not? Then I create unit test of it and then it removes the warning.
For some methods like onCreate()
etc we can't write unit tests so we can set it to some other property to ignore the warning when lint asks for it.