Sha256: d15867388676deef49bc790d77fb58bac25a140a4b64f0dab02c38d499959396

Contents?: true

Size: 680 Bytes

Versions: 2

Compression:

Stored size: 680 Bytes

Contents

<?xml version="1.0" encoding="utf-8"?>
<TestRunner 
	xmlns="asunit.textui.*" 
	xmlns:mx="http://www.adobe.com/2006/mxml"
	addedToStage="runTests()">

	<mx:Script>
		<![CDATA[
		import asunit.textui.TestRunner;
		import asunit.textui.XMLResultPrinter;
	
		private 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
			setPrinter(new XMLResultPrinter());
			start(AllTests, null, TestRunner.SHOW_TRACE);
		}
		]]>
	</mx:Script>

</TestRunner>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sprout-flex4-bundle-0.1.4 lib/sprout/generators/project/templates/XMLRunner.mxml
sprout-flex4-bundle-0.1.3 lib/sprout/generators/project/templates/XMLRunner.mxml