Searched refs:xCDS (Results 1 – 1 of 1) sorted by relevance
186 XCDATASection xCDS = xDoc.createCDATASection("foo"); in testXDocument() local187 assertNotNull("XDocument.createCDATASection", xCDS); in testXDocument()1554 XCDATASection xCDS = xDoc.createCDATASection("foobar"); in testXCDataSection() local1555 assertNotNull(xCDS); in testXCDataSection()1557 assertEquals("XCDATASection.getData", "foobar", xCDS.getData()); in testXCDataSection()1558 assertEquals("XCDATASection.getLength", 6, xCDS.getLength()); in testXCDataSection()1576 xCDS.setData("foo"); in testXCDataSection()1578 xCDS.appendData("baz"); in testXCDataSection()1579 assertEquals("XCDATASection.appendData", "foobaz", xCDS.getData()); in testXCDataSection()1582 xCDS.deleteData(999,999); in testXCDataSection()[all …]