Examples of JPanelFixture


Examples of org.fest.swing.fixture.JPanelFixture

import org.openscience.jchempaint.matchers.ComboBoxTextComponentMatcher;

public class SetSmilesTest extends AbstractAppletTest {
  @Test
  public void testSetSmiles() throws CDKException {
    JPanelFixture jcppanel = applet.panel("appletframe");
    JChemPaintPanel panel = (JChemPaintPanel) jcppanel.target;
    jcpApplet.setSmiles("CCCC");
    panel.get2DHub().updateView();
    Assert.assertEquals(4, panel.getChemModel().getMoleculeSet()
        .getAtomContainer(0).getAtomCount());
View Full Code Here
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.