001 package org.springframework.richclient.form.builder;
002
003 import org.springframework.richclient.form.binding.BindingFactory;
004
005 /**
006 * Testcase for <code>GridBagLayoutFormBuilder</code>.
007 *
008 * @author Peter De Bruycker
009 */
010 public class GridBagLayoutFormBuilderTests extends AbstractFormBuilderTestCase {
011
012 protected AbstractFormBuilder createFormBuilder(BindingFactory bindingFactory) {
013 return new GridBagLayoutFormBuilder(bindingFactory);
014 }
015
016 }