Classes that look like test cases should contain tests.
This issue is reported when a file within a test directory looks like a test file (has "Test" in its name, or contains classes with test framework related annotations) but contains no actual test code.
This issue will be reported if no symbols related to any of the following frameworks are found:
Avoid declaring classes that seem like tests but don't contain any test cases.
class SomethingTest {
// no test methods.
}
Give the class a better name, or remove it altogether if there is no need for it.