private void reportRemainingTests() {
final Map<String, List<String>> expectedTestsMap = this.getExpectedTestsBySuiteName();
if (expectedTestsMap != null && expectedTestsMap.containsKey(this.getTestMethod().getQUnitTestSuiteFilePath())) {
final List<String> expectedTests = expectedTestsMap.get(this.getTestMethod().getQUnitTestSuiteFilePath());
for (String test : expectedTests) {
final Description testDescription = this.getTestSuite().getTestDescriptions()
.get(NamingUtils.createUniqueTestName(test));
notifier.fireTestStarted(testDescription);
notifier.fireTestFailure(new Failure(testDescription, new Exception(
"QUnit test was not executed or stuck and did not finish within time")));
}