blob: cd53ca47e3ff9a8feb4f56187ac829d9f0eed31d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2015 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:
* Christian Plesner Hansen (plesner@quenta.org) - initial API and implementation
*******************************************************************************/
package org.eclipse.jface.text.tests;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.source.ICharacterPairMatcher;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Tests for the default pair matcher.
*
* @since 3.3
*/
public class DefaultPairMatcherTest extends AbstractPairMatcherTest {
public DefaultPairMatcherTest() {
super(false);
}
public static Test suite() {
return new TestSuite(DefaultPairMatcherTest.class);
}
/** Tests that the test case reader works */
public void testTestCaseReader1() {
performReaderTest("#( )%", 3, 0, "( )");
performReaderTest("( )%", 3, -1, "( )");
}
/**
* Close matches.
*
* @throws BadLocationException test failure
*/
public void testCloseMatches1() throws BadLocationException {
final ICharacterPairMatcher matcher= createMatcher("()[]{}");
performMatch(matcher, "#()%");
performMatch(matcher, "(#()%)");
matcher.dispose();
}
/**
* Checks of simple situations where no matches should be found.
*
* @throws BadLocationException test failure
*/
public void testIncompleteMatch1() throws BadLocationException {
final ICharacterPairMatcher matcher= createMatcher("()[]{}");
performMatch(matcher, "( %)");
performMatch(matcher, "%( )");
matcher.dispose();
}
}