Package org.jpacman.framework.ui

Examples of org.jpacman.framework.ui.ButtonPanel


   * Smoke test that merely creates the panel.
   */
  @Test
  public void buttonPanelSmokeTest() {
    JFrame jf = new JFrame();
    ButtonPanel bp = new ButtonPanel().withParent(jf);
    jf.add(bp);
    jf.setVisible(true);
    // next create suitable mocks for the listeners.
    // and then all we need is a gui testing
    // framework allowing us to click...
View Full Code Here

TOP

Related Classes of org.jpacman.framework.ui.ButtonPanel

Copyright © 2018 www.massapicom. 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.