<?xml version="1.0" encoding="utf-8"?>
<mx:Application
initialize="core.addListener( new UIListener( runner ) )"
creationComplete="core.run( AllIntegrationTests, AllIntegrationRPCTests )"
xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:adobe="http://www.adobe.com/2009/flexUnitUIRunner"
xmlns:runner="org.flexunit.runner.*"
xmlns:cairngorm="com.adobe.cairngorm.*">
<mx:Script>
<![CDATA[
import mx.logging.LogEventLevel;
import com.adobe.cairngorm.integration.AllIntegrationRPCTests;
import com.adobe.cairngorm.integration.AllIntegrationTests;
import org.flexunit.listeners.UIListener;
]]>
</mx:Script>
<mx:TraceTarget level="{ LogEventLevel.DEBUG }">
<mx:filters>
<mx:Array>
<mx:String>com.adobe.cairngorm.*</mx:String>
<mx:String>org.spicefactory.*</mx:String>
</mx:Array>
</mx:filters>
</mx:TraceTarget>
<runner:FlexUnitCore id="core"/>
<adobe:TestRunnerBase id="runner"
width="100%" height="100%"/>
</mx:Application>