blob: 2e3cc622ee8f2166fb8817afba08d7c2bb24d348 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.compare.tests;
import junit.framework.Assert;
import junit.framework.TestCase;
import org.eclipse.compare.internal.DocLineComparator;
import org.eclipse.compare.rangedifferencer.IRangeComparator;
import org.eclipse.jface.text.Document;
import org.eclipse.jface.text.IDocument;
public class DocLineComparatorTest extends TestCase {
public DocLineComparatorTest(String name) {
super(name);
}
protected void setUp() throws Exception {
}
protected void tearDown() throws Exception {
super.tearDown();
}
public void testRangesEqual() {
IDocument doc1= new Document();
doc1.set("if (s.strip))"); //$NON-NLS-1$
IDocument doc2= new Document();
doc2.set("if (s.strip)"); //$NON-NLS-1$
IRangeComparator comp1= new DocLineComparator(doc1, null, true);
IRangeComparator comp2= new DocLineComparator(doc2, null, true);
Assert.assertFalse(comp1.rangesEqual(0, comp2, 0));
}
public void testWhitespaceAtEnd() {
IDocument doc1= new Document();
doc1.set("if (s.strip))"); //$NON-NLS-1$
IDocument doc2= new Document();
doc2.set("if (s.strip)) "); //$NON-NLS-1$
IRangeComparator comp1= new DocLineComparator(doc1, null, true);
IRangeComparator comp2= new DocLineComparator(doc2, null, true);
Assert.assertTrue(comp1.rangesEqual(0, comp2, 0));
}
public void testEmpty() {
IDocument doc1= new Document();
doc1.set(""); //$NON-NLS-1$
IDocument doc2= new Document();
doc2.set(" "); //$NON-NLS-1$
IRangeComparator comp1= new DocLineComparator(doc1, null, true);
IRangeComparator comp2= new DocLineComparator(doc2, null, true);
Assert.assertTrue(comp1.rangesEqual(0, comp2, 0));
}
}