Home
last modified time | relevance | path

Searched refs:expectedFile (Results 1 – 3 of 3) sorted by relevance

/tools/platform-compat/javatest/android/processor/compat/changeid/
DChangeIdProcessorTest.java109 String expectedFile = HEADER + "<config>" + in testCompatConfigXmlOutput() local
124 "Compat_compat_config.xml").contentsAsString(UTF_8).isEqualTo(expectedFile); in testCompatConfigXmlOutput()
198 String expectedFile = HEADER + "<config>" + in testCompatConfigXmlOutput_innerClass() local
209 "Compat.Inner_compat_config.xml").contentsAsString(UTF_8).isEqualTo(expectedFile); in testCompatConfigXmlOutput_innerClass()
230 String expectedFile = HEADER + "<config>" + in testCompatConfigXmlOutput_interface() local
241 "Compat_compat_config.xml").contentsAsString(UTF_8).isEqualTo(expectedFile); in testCompatConfigXmlOutput_interface()
263 String expectedFile = HEADER + "<config>" + in testCompatConfigXmlOutput_enum() local
274 "Compat_compat_config.xml").contentsAsString(UTF_8).isEqualTo(expectedFile); in testCompatConfigXmlOutput_enum()
366 String expectedFile = HEADER + "<config>" + in testLoggingOnly() local
377 "Compat_compat_config.xml").contentsAsString(UTF_8).isEqualTo(expectedFile); in testLoggingOnly()
[all …]
/tools/tradefederation/core/tests/src/com/android/tradefed/command/
DCommandFileParserTest.java456 final File expectedFile = new File(MOCK_FILE_PATH, includeFileName); in testMacroParserInclude_parentDir() local
467 } else if (expectedFile.equals(file)) { in testMacroParserInclude_parentDir()
491 final File expectedFile = new File(includeFileName); in testMacroParserInclude_absoluteInclude() local
502 } else if (expectedFile.equals(file)) { in testMacroParserInclude_absoluteInclude()
522 final File expectedFile = new File(includeFileName); in testMacroParserInclude_noParentDir() local
533 } else if (expectedFile.equals(file)) { in testMacroParserInclude_noParentDir()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DArtRunTest.java146 File expectedFile = getDependencyFileFromRunTestDir(testInfo, "expected.txt"); in runArtTest() local
147 CLog.i("Found expected output for run-test %s: %s", mRunTestName, expectedFile); in runArtTest()
148 String expected = FileUtil.readStringFromFile(expectedFile); in runArtTest()