This is an automated email from the ASF dual-hosted git repository. aharui pushed a commit to branch feature/MXRoyale in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 8db355e38220ca75c8df604455cda9be8d32a04b Author: Alex Harui <[email protected]> AuthorDate: Mon Apr 2 10:27:17 2018 -0700 radiobutton mx checkintests --- build.xml | 5 +++-- mustella/tests/mxtests/basicTests/BasicTests-config.xml | 2 +- mustella/tests/mxtests/basicTests/BasicTests.mxml | 4 ++-- .../tests/mxtests/basicTests/halo/scripts/RadioButtonTestScript.mxml | 2 +- mustella/tests/mxtests/basicTests/halo/views/RadioButtonTests.mxml | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/build.xml b/build.xml index e9dd619..00848ff 100644 --- a/build.xml +++ b/build.xml @@ -1581,13 +1581,14 @@ limitations under the License. <target name="mxtests-run-js" > <property name="profile_arg" value="dummy=false" /> <echo>url=file://${basedir}/mustella/tests/mxTests/bin/js-debug/index.html</echo> - <echo>script=${basedir}/mustella/tests/mxTests/halo/scripts/ButtonTestScript.mxml</echo> - <echo>script=${basedir}/mustella/tests/mxTests/halo/scripts/CheckBoxTestScript.mxml</echo> + <echo>script=${basedir}/mustella/tests/mxTests/basicTests/halo/scripts/ButtonTestScript.mxml</echo> + <echo>script=${basedir}/mustella/tests/mxTests/basicTests/halo/scripts/CheckBoxTestScript.mxml</echo> <java classname="marmotinni.MarmotinniRunner" classpath="${basedir}/mustella/target/classes" fork="true" failonerror="yes"> <!--<arg value="browser=chrome" />--> <arg value="url=file://${basedir}/mustella/tests/mxTests/basicTests/bin/js-debug/index.html" /> <arg value="script=${basedir}/mustella/tests/mxTests/basicTests/halo/scripts/ButtonTestScript.mxml" /> <arg value="script=${basedir}/mustella/tests/mxTests/basicTests/halo/scripts/CheckBoxTestScript.mxml" /> + <arg value="script=${basedir}/mustella/tests/mxTests/basicTests/halo/scripts/RadioButtonTestScript.mxml" /> <!--<arg value="showSteps=true" />--> <arg value="${profile_arg}" /> <classpath> diff --git a/mustella/tests/mxtests/basicTests/BasicTests-config.xml b/mustella/tests/mxtests/basicTests/BasicTests-config.xml index d12e551..db2177e 100644 --- a/mustella/tests/mxtests/basicTests/BasicTests-config.xml +++ b/mustella/tests/mxtests/basicTests/BasicTests-config.xml @@ -24,8 +24,8 @@ <includes> <symbol>halo.scripts.ButtonTestScript</symbol> <symbol>halo.scripts.CheckBoxTestScript</symbol> - <!-- <symbol>halo.scripts.RadioButtonTestScript</symbol> + <!-- <symbol>halo.scripts.TextInputTestScript</symbol> <symbol>halo.scripts.TextAreaTestScript</symbol> <symbol>halo.scripts.ComboBoxTestScript</symbol> diff --git a/mustella/tests/mxtests/basicTests/BasicTests.mxml b/mustella/tests/mxtests/basicTests/BasicTests.mxml index 7321622..65420a2 100644 --- a/mustella/tests/mxtests/basicTests/BasicTests.mxml +++ b/mustella/tests/mxtests/basicTests/BasicTests.mxml @@ -38,8 +38,8 @@ preloader="BasicTestsPreloader" <mx:State name="basicTest" /> <mx:State name="haloButtonTest" /> <mx:State name="haloCheckBoxTest" /> - <!-- <mx:State name="haloRadioButtonTest" /> + <!-- <mx:State name="haloTextInputTest" /> <mx:State name="haloTextAreaTest" /> <mx:State name="haloComboBoxTest" /> @@ -112,8 +112,8 @@ preloader="BasicTestsPreloader" <!-- STEP 2: Add an mxml component with the widgets for your test here --> <haloviews:ButtonTests id="haloButtonTests" includeIn="haloButtonTest" /> <haloviews:CheckBoxTests id="haloCheckBoxTests" includeIn="haloCheckBoxTest" /> - <!-- <haloviews:RadioButtonTests id="haloRadioButtonTests" includeIn="haloRadioButtonTest" /> + <!-- <haloviews:TextInputTests id="haloTextInputTests" includeIn="haloTextInputTest" /> <haloviews:TextAreaTests id="haloTextAreaTests" includeIn="haloTextAreaTest" /> <haloviews:ComboBoxTests id="haloComboBoxTests" includeIn="haloComboBoxTest" /> diff --git a/mustella/tests/mxtests/basicTests/halo/scripts/RadioButtonTestScript.mxml b/mustella/tests/mxtests/basicTests/halo/scripts/RadioButtonTestScript.mxml index c138835..df2ef3d 100644 --- a/mustella/tests/mxtests/basicTests/halo/scripts/RadioButtonTestScript.mxml +++ b/mustella/tests/mxtests/basicTests/halo/scripts/RadioButtonTestScript.mxml @@ -22,7 +22,7 @@ <!-- this set of lines form a template that must be in each unit test --> <mx:Script> <![CDATA[ - public static function init(o:DisplayObject):void + public static function init(o:Object):void { } ]]> diff --git a/mustella/tests/mxtests/basicTests/halo/views/RadioButtonTests.mxml b/mustella/tests/mxtests/basicTests/halo/views/RadioButtonTests.mxml index 963b3f7..0619d23 100644 --- a/mustella/tests/mxtests/basicTests/halo/views/RadioButtonTests.mxml +++ b/mustella/tests/mxtests/basicTests/halo/views/RadioButtonTests.mxml @@ -20,7 +20,7 @@ <mx:VBox xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" - xmlns:mx="library://ns.adobe.com/flex/mx" > + xmlns:mx="library://ns.apache.org/royale/mx" > <fx:Script> <![CDATA[ -- To stop receiving notification emails like this one, please contact [email protected].
