use of com.intellij.util.xml.events.DomEvent in project intellij-community by JetBrains.
the class IncrementalUpdateEventsTest method testRemove1.
public void testRemove1() {
deleteTag(1);
putExpected(new DomEvent(myElement, false));
assertResultsAndClear();
}
use of com.intellij.util.xml.events.DomEvent in project intellij-community by JetBrains.
the class IncrementalUpdateEventsTest method testAdd0.
public void testAdd0() {
addChildTag(0);
putExpected(new DomEvent(myElement, false));
assertResultsAndClear();
}
use of com.intellij.util.xml.events.DomEvent in project intellij-community by JetBrains.
the class IncrementalUpdateEventsTest method testAdd1.
public void testAdd1() {
addChildTag(1);
putExpected(new DomEvent(myElement, false));
assertResultsAndClear();
}
Aggregations