blob: acaa5fb41b1a16e06f2632c2292c13fedcb4f60f [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<UnitTester testDir="mobile/sample/tests/" 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="*" testSWF="MainSparkApp.mxml">
<!-- this set of lines form a template that must be in each unit test -->
<fx:Script>
<![CDATA[
public static function init(o:DisplayObject):void
{
}
]]>
</fx:Script>
<fx:Metadata>
<![CDATA[
[Mixin]
]]>
</fx:Metadata>
<!-- end of set of lines that must be in each unit test -->
<fx:Script>
<![CDATA[
import components.*;
import mx.core.FlexGlobals;
]]>
</fx:Script>
<testCases>
<!-- This test is a bitmap compare of a Button in a custom component in the active view. -->
<TestCase testID="lookAtASparkButtonInSparkApp" description="Use CompareBitmap on a Spark Button" keywords="[Button]">
<setup>
<ResetComponent target="navigator" className="components.ViewNavComp" waitEvent="updateComplete" />
</setup>
<body>
<CompareBitmap url="../tests/baselines/$testID.png" target="navigator.activeView.buttonComp1.btn1"/>
</body>
</TestCase>
<!--
This test pushes a fresh view, writes some unique data to it, pushes another view, confirms it is a new view,
pops a view, and confirms the unique data is there.
-->
<!--TestCase testID="pushAndPopAView" description="Be sure pushing and popping views works." keywords="[Button, pushView, popView]">
<setup>
<ResetComponent target="navigator" className="components.ViewNavComp" waitEvent="updateComplete" />
<RunCode code="FlexGlobals.topLevelApplication.navigator.pushView(components.View2)" waitTarget="navigator" waitEvent="viewChangeComplete" />
<SetProperty target="navigator.activeView" propertyName="data" value="pressTheBackButtonRandomData" />
</setup>
<body>
<RunCode code="FlexGlobals.topLevelApplication.navigator.pushView(components.View2)" waitTarget="navigator" waitEvent="viewChangeComplete" />
<AssertMethodValue method="value = FlexGlobals.topLevelApplication.navigator.activeView.data != 'pressTheBackButtonRandomData'" value="true" />
<RunCode code="FlexGlobals.topLevelApplication.navigator.popView()" waitTarget="navigator" waitEvent="viewChangeComplete" />
<AssertMethodValue method="value = FlexGlobals.topLevelApplication.navigator.activeView.data == 'pressTheBackButtonRandomData'" value="true" />
</body>
</TestCase-->
</testCases>
</UnitTester>