javauis/lcdui_qt/tsrc/uitestsrc/t_uirobot/choicegroup/ChoiceGroupPopupTest.java
changeset 23 98ccebc37403
parent 21 2a9601315dfc
--- a/javauis/lcdui_qt/tsrc/uitestsrc/t_uirobot/choicegroup/ChoiceGroupPopupTest.java	Mon May 03 12:27:20 2010 +0300
+++ b/javauis/lcdui_qt/tsrc/uitestsrc/t_uirobot/choicegroup/ChoiceGroupPopupTest.java	Fri May 14 15:47:24 2010 +0300
@@ -11,7 +11,7 @@
 *
 * Contributors:
 *
-* Description: 
+* Description:
 *
 */
 package t_uirobot.choicegroup;
@@ -32,12 +32,14 @@
  * <br>
  * Created: 2008-11-04
  */
-public class ChoiceGroupPopupTest extends ItemUITestBase {
+public class ChoiceGroupPopupTest extends ItemUITestBase
+{
 
     /**
      * Constructor.
      */
-    public ChoiceGroupPopupTest() {
+    public ChoiceGroupPopupTest()
+    {
     }
 
     /**
@@ -46,7 +48,8 @@
      * @param sTestName Test name.
      * @param rTestMethod Test method.
      */
-    public ChoiceGroupPopupTest(String sTestName, TestMethod rTestMethod) {
+    public ChoiceGroupPopupTest(String sTestName, TestMethod rTestMethod)
+    {
         super(sTestName, rTestMethod);
     }
 
@@ -57,14 +60,17 @@
      *
      * @return New testsuite.
      */
-    public Test suite() {
+    public Test suite()
+    {
         TestSuite aSuite = new TestSuite();
         aSuite.addTest(new ChoiceGroupPopupTest("testOpenPopup",
-                new TestMethod() {
-                    public void run(TestCase tc) {
-                        ((ChoiceGroupPopupTest) tc).testOpenPopup();
-                    }
-                }));
+                                                new TestMethod()
+        {
+            public void run(TestCase tc)
+            {
+                ((ChoiceGroupPopupTest) tc).testOpenPopup();
+            }
+        }));
 
         return aSuite;
     }
@@ -72,7 +78,8 @@
     /**
      * Test command on Items.
      */
-    public void testOpenPopup() {
+    public void testOpenPopup()
+    {
         Command cmd = new Command("Cmd", Command.ITEM, 0);
         ChoiceGroup choiceGroup = new ChoiceGroup("Popup", Choice.POPUP);
         choiceGroup.append("item1", null);
@@ -98,7 +105,7 @@
 
         assertTrue("No item selected", choiceGroup.getSelectedIndex() != -1);
         assertTrue("Could not change selection",
-                choiceGroup.getSelectedIndex() != sel);
+                   choiceGroup.getSelectedIndex() != sel);
 
         assertItemStateChanged("case1", choiceGroup);
     }