On Wed, Aug 5, 2020 at 11:25 PM Mike Drob <[email protected]> wrote: > +1 > > This is something I’ve been annoyed with before but then never did > anything about. > > My suggestion would be to end class names with Test and start method names > with test. I think LuceneTestCase already checks for the latter. > > Personally I would do the opposite with the class names. It's requires only half the renames:
lucene-solr[master]$ find . -name "*Test.java" | wc -l 891 lucene-solr[master]$ find . -name "Test*.java" | wc -l 1739
