< prev index next >

SWT/JemmySWT/test/org/jemmy/swt/PushButtonTest.java

Print this page




  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 package org.jemmy.swt;
  24 
  25 import org.eclipse.swt.widgets.Button;
  26 import org.eclipse.swt.widgets.Combo;
  27 import org.eclipse.swt.widgets.Composite;
  28 import org.eclipse.swt.widgets.Control;
  29 import org.eclipse.swt.widgets.List;
  30 import org.eclipse.swt.widgets.TabFolder;
  31 import org.eclipse.swt.widgets.Text;
  32 import org.jemmy.control.Wrap;
  33 import org.jemmy.input.SelectionText;
  34 import org.jemmy.interfaces.Parent;
  35 import org.jemmy.interfaces.Selectable;



  36 import org.testng.annotations.AfterClass;
  37 import org.testng.annotations.AfterMethod;
  38 import org.testng.annotations.BeforeClass;
  39 import org.testng.annotations.BeforeMethod;
  40 import org.testng.annotations.Test;
  41 
  42 import static org.testng.Assert.assertTrue;
  43 import static org.testng.AssertJUnit.assertEquals;
  44 
  45 /**
  46  *
  47  * @author shura
  48  */
  49 public class PushButtonTest {
  50 
  51     private static Parent<Control> shell;
  52     private static Parent<Control> buttonsParent;
  53 
  54     public PushButtonTest() {
  55     }




  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 package org.jemmy.swt;
  24 
  25 import org.eclipse.swt.widgets.Button;
  26 import org.eclipse.swt.widgets.Combo;
  27 import org.eclipse.swt.widgets.Composite;
  28 import org.eclipse.swt.widgets.Control;
  29 import org.eclipse.swt.widgets.List;
  30 import org.eclipse.swt.widgets.TabFolder;
  31 import org.eclipse.swt.widgets.Text;
  32 import org.jemmy.control.Wrap;
  33 import org.jemmy.input.SelectionText;
  34 import org.jemmy.interfaces.Parent;
  35 import org.jemmy.interfaces.Selectable;
  36 import org.jemmy.swt.lookup.ByName;
  37 import org.jemmy.swt.lookup.ByTextTextLookup;
  38 import org.jemmy.swt.lookup.CoordinateLookup;
  39 import org.testng.annotations.AfterClass;
  40 import org.testng.annotations.AfterMethod;
  41 import org.testng.annotations.BeforeClass;
  42 import org.testng.annotations.BeforeMethod;
  43 import org.testng.annotations.Test;
  44 
  45 import static org.testng.Assert.assertTrue;
  46 import static org.testng.AssertJUnit.assertEquals;
  47 
  48 /**
  49  *
  50  * @author shura
  51  */
  52 public class PushButtonTest {
  53 
  54     private static Parent<Control> shell;
  55     private static Parent<Control> buttonsParent;
  56 
  57     public PushButtonTest() {
  58     }


< prev index next >