Package org.custommonkey.xmlunit

Examples of org.custommonkey.xmlunit.NodeTestException


     */
    public void noMoreNodes(NodeTest forTest) throws NodeTestException {
        int testedNodes = actualNumNodes;
        resetCounter();
        if (testedNodes != expectedNumNodes) {
            throw new NodeTestException("Counted " + testedNodes
                                        + " node(s) but expected " + expectedNumNodes);
        }
    }
View Full Code Here

TOP

Related Classes of org.custommonkey.xmlunit.NodeTestException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.