blob: 51ba5f0b91402e4f202b91eace5f5bdba6181c04 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Original authors 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:
* Original authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.test.performance;
import org.eclipse.nebula.widgets.nattable.grid.data.DummyBodyDataProvider;
import org.eclipse.nebula.widgets.nattable.hideshow.ColumnHideShowLayer;
import org.eclipse.nebula.widgets.nattable.layer.DataLayer;
import org.eclipse.nebula.widgets.nattable.layer.stack.DefaultBodyLayerStack;
import org.eclipse.nebula.widgets.nattable.reorder.ColumnReorderLayer;
import org.eclipse.nebula.widgets.nattable.selection.SelectionLayer;
import org.eclipse.nebula.widgets.nattable.viewport.ViewportLayer;
import org.junit.Test;
public class BodyStackLayerPerformanceTest extends AbstractLayerPerformanceTest {
@Test
public void testViewportHideShowReorderDataLayerPerformance() {
layer = new ViewportLayer(new ColumnHideShowLayer(new ColumnReorderLayer(new DataLayer(new DummyBodyDataProvider(1000000, 1000000)))));
}
@Test
public void testViewportSelectionHideShowReorderDataLayerPerformance() {
layer = new ViewportLayer(new SelectionLayer(new ColumnHideShowLayer(new ColumnReorderLayer(new DataLayer(new DummyBodyDataProvider(1000000, 1000000))))));
}
@Test
public void testDefaultBodyLayerStackPerformance() {
layer = new DefaultBodyLayerStack(new DataLayer(new DummyBodyDataProvider(1000000, 1000000)));
}
}