-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Does anyone know if it is possible to test remote procedure calls in Cairngorm Commands with FlexUnit 4. I have an old app full of them and before I introduce FlexUnit into the mix would like to here if anyone has been successful with this.
Many thanks,
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
It seems that most XUnit testing frameworks provide assertions for the times when you want to assert that a given operation will thrown an exception (or an Error in AS3 parlance.) Is there some "standard" way of doing this that I am overlooking, which would explain the absence of an assertError()…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to test some async functionality in flex 4. My test has two stages :
var loader:MySuperLoader = new MySuperLoader()
loader.load('foo.swf');
loader.addEventListener(Event.COMPLETE, Async.asyncHandler(this, function(e:Event):void {
loader.removeEventListener(Event.COMPLETE, arguments…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I have some software classes(library) to run commands on any mxml file.
These classes(library) are wrapped in a SWC file. This SWC file is referenced by any sample mxml application (by adding as SWC file).
My problem is that I want to test these software classes(library) against my sample mxml…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am trying to automatically verify certain conventions, such as label/table column header text (Sentence Case, use of colons, etc).
It would be nice if there was a way in FlexUnit, or other means, to
Iterate over all views in the app
Get all titles, labels, column headers
Run some pattern checks…
>>> More