Package name.pehl.totoe.xml.client

Examples of name.pehl.totoe.xml.client.CDATA


    protected void assertDescriptionText(Node description)
    {
        assertNotNull(description);
        assertTrue(description instanceof CDATA);
        CDATA descriptionCDATA = (CDATA) description;
        assertEquals(NodeType.CDATA, descriptionCDATA.getType());
        assertTrue(descriptionCDATA.getText().contains(CALL_IT_WHAT_YOU_WILL));
    }
View Full Code Here

TOP

Related Classes of name.pehl.totoe.xml.client.CDATA

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.