Prefixing JUnit4 test methods with test
is unnecessary and redundant given the
use of the @Test
annotation makes it clear that they’re tests.
Suppress false positives by adding the suppression annotation @SuppressWarnings("UnnecessaryTestMethodPrefix")
to the enclosing element.