blob: 2322149db5aea5075117d436e76fe86a8287b80f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 RĂ¼diger Herrmann and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* RĂ¼diger Herrmann - Insufficient is-disposed check in LineNumberRulerColumn::redraw - https://bugs.eclipse.org/bugs/show_bug.cgi?id=506427
*******************************************************************************/
package org.eclipse.jface.text.tests.source;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.jface.text.source.CompositeRuler;
import org.eclipse.jface.text.source.LineNumberRulerColumn;
import org.eclipse.jface.text.source.SourceViewer;
public class LineNumberRulerColumnTest {
private Shell fParent;
@Before
public void setUp() {
fParent= new Shell();
}
@After
public void tearDown() {
fParent.dispose();
}
@Test
public void testRedrawAfterDispose() {
LineNumberRulerColumn lineNumberRulerColumn= new LineNumberRulerColumn();
CompositeRuler ruler= new CompositeRuler();
ruler.addDecorator(0, lineNumberRulerColumn);
SourceViewer sourceViewer= new SourceViewer(fParent, ruler, SWT.NONE);
lineNumberRulerColumn.getControl().setSize(10, 10);
sourceViewer.getTextWidget().dispose();
lineNumberRulerColumn.redraw();
}
}