Home | History | Annotate | Download | only in tests

Lines Matching refs:xmlFile

107      * @param xmlFile {@link File} xml file to process
112 public boolean expectExists(File xmlFile, String xPathString) {
113 Node n = getNodeForXPath(xmlFile, xPathString);
124 * @param xmlFile {@link File} the xml file in question
130 public boolean expectStartsWith(File xmlFile, String xPathString, String value) {
131 Node n = getNodeForXPath(xmlFile, xPathString);
143 * @param xmlFile {@link File} the xml file in question
149 public boolean expectEquals(File xmlFile, String xPathString, String value) {
150 Node n = getNodeForXPath(xmlFile, xPathString);
163 public Node getNodeForXPath(File xmlFile, String xPathString) {
167 Document doc = documentBuilder.parse(xmlFile);