1 package org.xmldb.xupdate.unittests; 2 3 55 56 62 public class XUpdateTests extends LexusTestCase { 63 64 public XUpdateTests(String name) { 65 super(name); 66 } 67 68 78 public void testRemove() throws Exception { 79 mainTest("testRemove"); 80 } 81 82 public void testRemoveAttribute() throws Exception { 83 mainTest("testRemoveAttribute"); 84 } 85 86 public void testRemoveText() throws Exception { 87 mainTest("testRemoveText"); 88 } 89 90 108 public void testInsertBefore() throws Exception { 109 mainTest("testInsertBefore"); 110 } 111 112 public void testInsertAfter() throws Exception { 113 mainTest("testInsertAfter"); 114 } 115 116 public void testInsertAfterNS() throws Exception { 117 mainTest("testInsertAfterNS"); 118 } 119 120 public void testTextInsertAfter() throws Exception { 121 mainTest("testTextInsertAfter"); 122 } 123 124 public void testInsertBeforeAttribute() throws Exception { 125 mainTest("testInsertBeforeAttribute"); 126 } 127 128 public void testInsertAfterAttribute() throws Exception { 129 mainTest("testInsertAfterAttribute"); 130 } 131 132 141 public void testRename() throws Exception { 142 mainTest("testRename"); 143 } 144 145 public void testRenameAttribute() throws Exception { 146 mainTest("testRenameAttribute"); 147 } 148 149 160 public void testUpdate() throws Exception { 161 mainTest("testUpdate"); 162 } 163 164 public void testUpdateAttribute() throws Exception { 165 mainTest("testUpdateAttribute"); 166 } 167 168 180 public void testAppendNS() throws Exception { 181 mainTest("testAppendNS"); 182 } 183 184 public void testAppendAttribute() throws Exception { 185 mainTest("testAppendAttribute"); 186 } 187 188 public void testAppendCDATA() throws Exception { 189 mainTest("testAppendCDATA"); 190 } 191 192 196 public void testVariable() throws Exception { 197 mainTest("testVariable"); 198 } 199 200 public void testValueOf() throws Exception { 201 mainTest("testValueOf"); 202 } 203 204 209 public void testInputWithNameSpaces() throws Exception { 210 mainTest("testInputWithNameSpaces"); 211 } 212 213 219 public void testUseCases() throws Exception { 220 mainTest("use-cases_Insert_Element_Before"); 221 mainTest("use-cases_Insert_Element_After"); 222 mainTest("use-cases_Append_Element"); 223 mainTest("use-cases_Insert_Attribute"); 224 227 mainTest("use-cases_Insert_XML_Block"); 229 233 } 235 } 236 | Popular Tags |