Sha256: eca6b1ba6f7b6c202bd9887370902a43f6d6eb9d4d0c807be7c11472c638fab0

Contents?: true

Size: 716 Bytes

Versions: 4

Compression:

Stored size: 716 Bytes

Contents

<?xml version="1.0" encoding="utf-8"?>
<FlexRunner 
	xmlns="asunit.textui.*" 
	xmlns:mx="http://www.adobe.com/2006/mxml" 
	creationComplete="runTests()"
	>
	<!-- Import Application Styles -->
	<mx:Style source="<%= project_name %>Skin.css" />
    <mx:Script>
    	<![CDATA[
    		import asunit.textui.TestRunner;

			public function runTests():void {

				// start(clazz:Class, methodName:String, showTrace:Boolean)
				// NOTE: sending a particular class and method name will
				// execute setUp(), the method and NOT tearDown.
				// This allows you to get visual confirmation while developing
				// visual entities
 				start(AllTests, null, TestRunner.SHOW_TRACE);
			}
    	]]>
    </mx:Script>
</FlexRunner>

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
sprout-flex4-bundle-0.1.4 lib/sprout/generators/project/templates/TestRunner.mxml
sprout-mxml-bundle-0.1.13 lib/sprout/generators/project/templates/TestRunner.mxml
sprout-flex4-bundle-0.1.3 lib/sprout/generators/project/templates/TestRunner.mxml
sprout-mxml-bundle-0.1.11 lib/sprout/generators/project/templates/TestRunner.mxml