blob: 735b3583c99e83a8739013bfeb3738a4e74e1f49 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*
*******************************************************************************/
package org.eclipse.wst.sse.core.tests.events;
import junit.framework.TestCase;
import org.eclipse.wst.sse.core.internal.document.StructuredDocumentFactory;
import org.eclipse.wst.sse.core.internal.provisional.events.StructuredDocumentRegionsReplacedEvent;
import org.eclipse.wst.sse.core.internal.provisional.text.IStructuredDocument;
public class TestStructuredDocumentRegionsReplacedEvent extends TestCase {
final private static String testString = "testing";
public void testStructuredDocumentRegionsReplacedEvent() {
StructuredDocumentRegionsReplacedEvent event = getBasicEvent();
assertNotNull(event);
}
public void testGetNewStructuredDocumentRegions() {
StructuredDocumentRegionsReplacedEvent event = getBasicEvent();
assertNull(event.getNewStructuredDocumentRegions());
}
public void testGetOldStructuredDocumentRegions() {
StructuredDocumentRegionsReplacedEvent event = getBasicEvent();
assertNull(event.getOldStructuredDocumentRegions());
}
private StructuredDocumentRegionsReplacedEvent getBasicEvent() {
IStructuredDocument document = StructuredDocumentFactory.getNewStructuredDocumentInstance(new NullParser());
document.setText(this, testString);
StructuredDocumentRegionsReplacedEvent event = new StructuredDocumentRegionsReplacedEvent(document, this, null, null, "", 0, 0);
return event;
}
}