|
From: <ali...@us...> - 2006-08-08 23:20:18
|
Revision: 62 Author: alimills Date: 2006-08-08 16:20:09 -0700 (Tue, 08 Aug 2006) ViewCVS: http://svn.sourceforge.net/asunit/?rev=62&view=rev Log Message: ----------- Flex Builder 2.0 release fixes Modified Paths: -------------- trunk/framework/as3/asunit/errors/AssertionFailedError.as trunk/framework/as3/asunit/errors/InstanceNotFoundError.as trunk/framework/as3/asunit/framework/AsynchronousTestCase.as trunk/framework/as3/asunit/textui/ResultPrinter.as trunk/xului/bin/AsUnit.xpi Modified: trunk/framework/as3/asunit/errors/AssertionFailedError.as =================================================================== --- trunk/framework/as3/asunit/errors/AssertionFailedError.as 2006-06-25 17:32:09 UTC (rev 61) +++ trunk/framework/as3/asunit/errors/AssertionFailedError.as 2006-08-08 23:20:09 UTC (rev 62) @@ -1,10 +1,11 @@ package asunit.errors { public class AssertionFailedError extends Error { - public var name:String = "AssertionFailedError"; +// public var name:String = "AssertionFailedError"; public function AssertionFailedError(message:String) { super(message); + name = "AssertionFailedError"; } } } \ No newline at end of file Modified: trunk/framework/as3/asunit/errors/InstanceNotFoundError.as =================================================================== --- trunk/framework/as3/asunit/errors/InstanceNotFoundError.as 2006-06-25 17:32:09 UTC (rev 61) +++ trunk/framework/as3/asunit/errors/InstanceNotFoundError.as 2006-08-08 23:20:09 UTC (rev 62) @@ -1,10 +1,11 @@ package asunit.errors { public class InstanceNotFoundError extends Error { - public var name:String = "InstanceNotFoundError"; +// public var name:String = "InstanceNotFoundError"; public function InstanceNotFoundError(message:String) { super(message); + name = "InstanceNotFoundError"; } } } \ No newline at end of file Modified: trunk/framework/as3/asunit/framework/AsynchronousTestCase.as =================================================================== --- trunk/framework/as3/asunit/framework/AsynchronousTestCase.as 2006-06-25 17:32:09 UTC (rev 61) +++ trunk/framework/as3/asunit/framework/AsynchronousTestCase.as 2006-08-08 23:20:09 UTC (rev 62) @@ -1,5 +1,4 @@ package asunit.framework { - import flash.util.trace; import flash.net.URLRequest; import flash.net.URLLoader; import flash.events.*; Modified: trunk/framework/as3/asunit/textui/ResultPrinter.as =================================================================== --- trunk/framework/as3/asunit/textui/ResultPrinter.as 2006-06-25 17:32:09 UTC (rev 61) +++ trunk/framework/as3/asunit/textui/ResultPrinter.as 2006-08-08 23:20:09 UTC (rev 62) @@ -77,11 +77,13 @@ } public function println(...args:Array):void { - textArea.text += args.toString() + "\n"; +// textArea.text += args.toString() + "\n"; + textArea.appendText(args.toString() + "\n"); } public function print(...args:Array):void { - textArea.text += args.toString(); +// textArea.text += args.toString(); + textArea.appendText(args.toString()); } /* API for use by textui.TestRunner */ Modified: trunk/xului/bin/AsUnit.xpi =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |