Home
last modified time | relevance | path

Searched refs:testResults (Results 1 – 15 of 15) sorted by relevance

/external/flatbuffers/tests/FlatBuffers.Test/
DProgram.cs28 var testResults = new List<bool>(); in Main()
46 testResults.Add(true); in Main()
52 testResults.Add(false); in Main()
57 var failedCount = testResults.Count(i => i == false); in Main()
59 Console.WriteLine("{0} tests run, {1} failed", testResults.Count, failedCount); in Main()
/external/testng/src/main/java/org/testng/reporters/
DXMLSuiteResultWriter.java65 Set<ITestResult> testResults = Sets.newHashSet(); in writeAllToBuffer() local
67 addAllTestResults(testResults, testContext.getPassedTests()); in writeAllToBuffer()
68 addAllTestResults(testResults, testContext.getFailedTests()); in writeAllToBuffer()
69 addAllTestResults(testResults, testContext.getSkippedTests()); in writeAllToBuffer()
70 addAllTestResults(testResults, testContext.getPassedConfigurations()); in writeAllToBuffer()
71 addAllTestResults(testResults, testContext.getSkippedConfigurations()); in writeAllToBuffer()
72 addAllTestResults(testResults, testContext.getFailedConfigurations()); in writeAllToBuffer()
73 addAllTestResults(testResults, testContext.getFailedButWithinSuccessPercentageTests()); in writeAllToBuffer()
74 addTestResults(xmlBuffer, testResults); in writeAllToBuffer()
79 private void addAllTestResults(Set<ITestResult> testResults, IResultMap resultMap) { in addAllTestResults() argument
[all …]
DEmailableReporter2.java559 private final List<TestResult> testResults = Lists.newArrayList(); field in EmailableReporter2.SuiteResult
564 testResults.add(new TestResult(suiteResult.getTestContext())); in SuiteResult()
576 return testResults; in getTestResults()
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/manual/
DBulkParseTest.java123 …Path testResults = mavenModuleRoot(BulkParseTest.class).resolve(Paths.get("..", "javaparser-core-t… in writeResults() local
124 testResults.toFile().mkdirs(); in writeResults()
125 testResults = testResults.resolve(testResultsFileName); in writeResults()
128 try (BufferedWriter writer = Files.newBufferedWriter(testResults)) { in writeResults()
142 Path finalTestResults = testResults; in writeResults()
/external/testng/src/main/java/org/testng/reporters/jq/
DNavigatorPanel.java162 List<ITestResult> testResults = getModel().getTestResults(suite); in getMethodsByStatus() local
163 for (ITestResult tr : testResults) { in getMethodsByStatus()
228 List<ITestResult> testResults = provider.getResults(); in generateMethodList() local
229 if (testResults != null) { in generateMethodList()
230 Collections.sort(testResults, ResultsByClass.METHOD_NAME_COMPARATOR); in generateMethodList()
231 for (ITestResult tr : testResults) { in generateMethodList()
/external/icu/icu4c/source/test/cintltst/
Ducsdetst.c384 static const char *testResults[] = { in TestBufferOverflow() local
411 if (testResults[idx] != NULL) { in TestBufferOverflow()
420 … if (testResults[idx] == NULL || strcmp(ucsdet_getName(match, &status), testResults[idx]) != 0) { in TestBufferOverflow()
422 … ucsdet_getName(match, &status), testResults[idx], idx, ucsdet_getConfidence(match, &status)); in TestBufferOverflow()
/external/cronet/third_party/icu/source/test/cintltst/
Ducsdetst.c384 static const char *testResults[] = { in TestBufferOverflow() local
411 if (testResults[idx] != NULL) { in TestBufferOverflow()
420 … if (testResults[idx] == NULL || strcmp(ucsdet_getName(match, &status), testResults[idx]) != 0) { in TestBufferOverflow()
422 … ucsdet_getName(match, &status), testResults[idx], idx, ucsdet_getConfidence(match, &status)); in TestBufferOverflow()
/external/testng/src/main/java/org/testng/internal/
DTestMethodWorker.java128 List<ITestResult> testResults = in invokeTestMethods() local
136 if (testResults != null) { in invokeTestMethods()
137 m_testResults.addAll(testResults); in invokeTestMethods()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/
DTestCharsetDetector.java286 String testResults[] = { in TestBufferOverflow() local
307 if (testResults[idx] != null) { in TestBufferOverflow()
316 if (testResults[idx] == null || ! testResults[idx].equals(match.getName())) { in TestBufferOverflow()
317 errln("Unexpectedly got " + match.getName() + " instead of " + testResults[idx] + in TestBufferOverflow()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/charsetdet/
DTestCharsetDetector.java289 String testResults[] = { in TestBufferOverflow() local
310 if (testResults[idx] != null) { in TestBufferOverflow()
319 if (testResults[idx] == null || ! testResults[idx].equals(match.getName())) { in TestBufferOverflow()
320 errln("Unexpectedly got " + match.getName() + " instead of " + testResults[idx] + in TestBufferOverflow()
/external/icu/icu4c/source/test/letest/
Dtestdata.cpp633 TestResult testResults[] = variable
/external/cronet/third_party/icu/source/test/letest/
Dtestdata.cpp633 TestResult testResults[] = variable
/external/apache-commons-lang/
DJenkinsfile40 junit(testResults: '**/surefire-reports/*.xml', allowEmptyResults: true)
/external/angle/src/tests/test_utils/runner/
DTestSuite.cpp147 const TestResults &testResults, in WriteResultsFile() argument
171 if (!testResults.testArtifactPaths.empty()) in WriteResultsFile()
182 for (const std::string &testArtifactPath : testResults.testArtifactPaths) in WriteResultsFile()
205 fakeTestName.SetString(testResults.testArtifactsFakeTestName, allocator); in WriteResultsFile()
211 for (const auto &resultIter : testResults.results) in WriteResultsFile()
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmFloatControlsTests.cpp2883 TypeTestResultsSP testResults; member
2899 m_typeData[FP16].testResults = TypeTestResultsSP(new TypeTestResults<deFloat16>); in TestGroupBuilderBase()
2903 m_typeData[FP32].testResults = TypeTestResultsSP(new TypeTestResults<float>); in TestGroupBuilderBase()
2907 m_typeData[FP64].testResults = TypeTestResultsSP(new TypeTestResults<double>); in TestGroupBuilderBase()
3316 m_operationTestCaseBuilder.build(testCases, m_typeData[floatType].testResults, argumentsFromInput); in createOperationTests()
4113 m_testCaseBuilder.build(testCases, m_typeData[floatType].testResults, argumentsFromInput); in createOperationTests()
4150 m_testCaseBuilder.build(testCases, m_typeData[floatType].testResults, argumentsFromInput); in createOperationTests()