Searched refs:xPathString (Results 1 – 1 of 1) sorted by relevance
/tools/tradefederation/core/prod-tests/src/com/android/framework/tests/ |
D | PackageManagerOTATestUtils.java | 112 public boolean expectExists(File xmlFile, String xPathString) { in expectExists() argument 113 Node n = getNodeForXPath(xmlFile, xPathString); in expectExists() 115 CLog.d("Found node %s for xpath %s", n.getNodeName(), xPathString); in expectExists() 130 public boolean expectStartsWith(File xmlFile, String xPathString, String value) { in expectStartsWith() argument 131 Node n = getNodeForXPath(xmlFile, xPathString); in expectStartsWith() 133 CLog.d("Failed to find node for xpath %s", xPathString); in expectStartsWith() 136 CLog.d("Value of node %s: %s", xPathString, n.getNodeValue()); in expectStartsWith() 149 public boolean expectEquals(File xmlFile, String xPathString, String value) { in expectEquals() argument 150 Node n = getNodeForXPath(xmlFile, xPathString); in expectEquals() 152 CLog.d("Failed to find node for xpath %s", xPathString); in expectEquals() [all …]
|