Searched refs:totalTests (Results 1 – 2 of 2) sorted by relevance
456 int totalTests = includedTests.size(); in runSingleParFile() local457 int chunkSize = totalTests / totalShards; in runSingleParFile()458 if (totalTests % totalShards > 0) chunkSize++; in runSingleParFile()460 if (shardIndex >= totalTests) { in runSingleParFile()464 int endIndex = Math.min((shardIndex + 1) * chunkSize, totalTests); in runSingleParFile()465 if (startIndex >= totalTests) { in runSingleParFile()466 startIndex = Math.max(0, totalTests - 1); in runSingleParFile()467 endIndex = totalTests; in runSingleParFile()
650 int totalTests = Integer.parseInt(parser.getAttributeValue(NS, TOTAL_TESTS_ATTR)); in handleModuleLevel() local651 module.testRunStarted(moduleId, totalTests); in handleModuleLevel()