blob: 90f59243f4a90a3024bec995addc048984053613 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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.jdt.text.tests.comments;
import java.util.HashMap;
import java.util.Map;
import junit.framework.TestCase;
import org.eclipse.jface.text.Document;
import org.eclipse.jface.text.TextUtilities;
import org.eclipse.jdt.ui.text.IJavaPartitions;
public abstract class CommentTestCase extends TestCase {
public static final String DELIMITER= TextUtilities.getDefaultLineDelimiter(new Document());
private Map fUserOptions;
protected CommentTestCase(String name) {
super(name);
}
/*
* @see junit.framework.TestCase#tearDown()
*/
protected void tearDown() throws Exception {
fUserOptions= null;
}
protected abstract String getCommentType();
protected Map getUserOptions() {
return fUserOptions;
}
protected void setUserOption(String name, String value) {
if (fUserOptions == null)
fUserOptions= new HashMap();
fUserOptions.put(name, value);
}
protected final String testFormat(String text) {
return testFormat(text, 0, text.length());
}
protected String testFormat(String text, int offset, int length) {
return testFormat(text, offset, length, getCommentType());
}
protected String testFormat(String text, int offset, int length, final String type) {
assertNotNull(text);
assertTrue(offset >= 0);
assertTrue(offset < text.length());
assertTrue(length >= 0);
assertTrue(offset + length <= text.length());
assertNotNull(type);
assertTrue(type.equals(IJavaPartitions.JAVA_DOC) || type.equals(IJavaPartitions.JAVA_MULTI_LINE_COMMENT) || type.equals(IJavaPartitions.JAVA_SINGLE_LINE_COMMENT));
return CommentFormatterUtil.format(type, text, offset, length, CommentFormatterUtil.createOptions(getUserOptions()));
}
}