Home
last modified time | relevance | path

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

/tools/tradefederation/contrib/src/com/android/framework/tests/
DPackageManagerOTATestUtils.java108 public boolean expectExists(File xmlFile, String xPathString) { in expectExists() argument
109 Node n = getNodeForXPath(xmlFile, xPathString); in expectExists()
111 CLog.d("Found node %s for xpath %s", n.getNodeName(), xPathString); in expectExists()
125 public boolean expectStartsWith(File xmlFile, String xPathString, String value) { in expectStartsWith() argument
126 Node n = getNodeForXPath(xmlFile, xPathString); in expectStartsWith()
128 CLog.d("Failed to find node for xpath %s", xPathString); in expectStartsWith()
131 CLog.d("Value of node %s: %s", xPathString, n.getNodeValue()); in expectStartsWith()
143 public boolean expectEquals(File xmlFile, String xPathString, String value) { in expectEquals() argument
144 Node n = getNodeForXPath(xmlFile, xPathString); in expectEquals()
146 CLog.d("Failed to find node for xpath %s", xPathString); in expectEquals()
[all …]