blob: 2b76b78393de2693235417b4abf244ac82c69e5d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2010 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.draw2d.test;
import junit.framework.TestCase;
import org.eclipse.draw2d.RectangleFigure;
import org.eclipse.draw2d.XYLayout;
import org.eclipse.draw2d.geometry.Dimension;
import org.eclipse.draw2d.geometry.Rectangle;
public class XYLayoutTest extends TestCase {
protected XYLayout layout;
protected RectangleFigure figure;
protected RectangleFigure contents;
/*
* @see TestCase#setUp()
*/
protected void setUp() throws Exception {
super.setUp();
}
public void testPreferredSize() {
layout = new XYLayout();
contents = new RectangleFigure();
contents.setLayoutManager(layout);
figure = new RectangleFigure();
contents.add(figure, new Rectangle(0, 0, 100, -1));
figure.setPreferredSize(100, 150);
Dimension d = contents.getPreferredSize();
assertEquals(100, d.width);
assertEquals(150, d.height);
}
/*
* @see TestCase#tearDown()
*/
protected void tearDown() throws Exception {
super.tearDown();
}
}