Either TestXXX or XXXTest works to me, but better use only one style consistently if we would prefer one. I've seen both used in other projects. Thanks.
Regards, Kai -----Original Message----- From: Emmanuel Lécharny [mailto:[email protected]] Sent: Wednesday, December 30, 2015 7:02 PM To: [email protected] Subject: Tests name Hi, I would strongly suggest that the tests name are to be a composition of <Class being tested><"Test"> instead of <"Test"><Class being tested> : it makes it way easier to find the test in an IDE. It's a bit a burden to find the test when you have a list like that : TestAsRepCodec.java TestAsReqCodec.java TestPaPkAsRep.java TestPkinitAnonymousAsRepCodec.java TestPkinitAnonymousAsReqCodec.java TestPkinitRsaAsRepCodec.java TestPkinitRsaAsReqCodec.java TestTgsRepCodec.java TestTgsReqCodec.java where all the tests starts with 'Test'...
