Package com.google.gdt.eclipse.designer.gxt.model.widgets.form

Source Code of com.google.gdt.eclipse.designer.gxt.model.widgets.form.DualListFieldTest

/*******************************************************************************
* Copyright 2011 Google Inc. All Rights Reserved.
*
* 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
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
package com.google.gdt.eclipse.designer.gxt.model.widgets.form;

import com.google.gdt.eclipse.designer.gxt.model.GxtModelTest;
import com.google.gdt.eclipse.designer.gxt.model.widgets.FieldInfo;
import com.google.gdt.eclipse.designer.gxt.model.widgets.LayoutContainerInfo;

/**
* Test for <code>com.extjs.gxt.ui.client.widget.form.DualListField</code>.
*
* @author scheglov_ke
*/
public class DualListFieldTest extends GxtModelTest {
  ////////////////////////////////////////////////////////////////////////////
  //
  // Exit zone :-) XXX
  //
  ////////////////////////////////////////////////////////////////////////////
  public void _test_exit() throws Exception {
    System.exit(0);
  }

  ////////////////////////////////////////////////////////////////////////////
  //
  // Client area insets
  //
  ////////////////////////////////////////////////////////////////////////////
  public void test_CREATE() throws Exception {
    LayoutContainerInfo container =
        parseJavaInfo(
            "// filler filler filler filler filler",
            "public class Test extends LayoutContainer {",
            "  public Test() {",
            "  }",
            "}");
    refresh();
    // add new DualListField
    {
      FieldInfo newField = createJavaInfo("com.extjs.gxt.ui.client.widget.form.DualListField");
      container.getLayout().command_CREATE(newField);
    }
    assertEditor(
        "import com.extjs.gxt.ui.client.store.ListStore;",
        "// filler filler filler filler filler",
        "public class Test extends LayoutContainer {",
        "  public Test() {",
        "    {",
        "      DualListField dualListField = new DualListField();",
        "      dualListField.getFromList().setStore(new ListStore());",
        "      dualListField.getToList().setStore(new ListStore());",
        "      add(dualListField);",
        "      dualListField.setFieldLabel('New DualListField');",
        "    }",
        "  }",
        "}");
    assertHierarchy(
        "{this: com.extjs.gxt.ui.client.widget.LayoutContainer} {this} {/add(dualListField)/}",
        "  {implicit-layout: default} {implicit-layout} {}",
        "  {new: com.extjs.gxt.ui.client.widget.form.DualListField} {local-unique: dualListField} {/new DualListField()/ /dualListField.setFieldLabel('New DualListField')/ /add(dualListField)/ /dualListField.getToList()/ /dualListField.getFromList()/}");
    // no exception
    refresh();
    assertNoErrors(container);
  }
}
TOP

Related Classes of com.google.gdt.eclipse.designer.gxt.model.widgets.form.DualListFieldTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.