vote up 4 vote down star
4

Are there any unit testing solutions for Flex? or actionscript 3?

If so, what are their features? Any UI testing abilities? Functional testing? Any pointers, examples, libraries or tools that you can share?

flag

72% accept rate

7 Answers

vote up 2 vote down check

I just found fluint, and it was a great unit testing library, better than both Flexunit and ASUnit imho. It handles asynchronous testing really nice.

link|flag
vote up 0 vote down

Try mockito for flex http://bitbucket.org/loomis/mockito-flex

link|flag
vote up 1 vote down

I'd recommend fluint simply due to it having a more active developer base (and it's improved support of testing asynchronous code). Also, if you are after mocking/stubs there is asmock (a dynamic mocking framework) and mock-as3 (a static mocking framework).

link|flag
vote up 0 vote down

For asynchronous unit testing dpUint is pretty useful. However FlexUnit is the way to go, if you wish to integrate unit testing with a Maven build. Asynchronous testing (e.g. Cairngorm events) can also be done with FlexUnit, but is not as elegant as with dpUint.

link|flag
vote up 2 vote down

I would recommend FlexUnit, too... and you also have a look at Visual FlexUnit.
A few days before I found the RIATest-Tool, but I haven't tried it yet.

link|flag
vote up 3 vote down

I can confirm that FlexMonkey indeed does UI unit testing. It provides record/playback of UI interactions and generates FlexUnit test cases.

Check it out at http://flexmonkey.googlecode.com

link|flag
vote up 5 vote down

FlexUnit is pretty awesome - http://code.google.com/p/as3flexunitlib/

Also ASUnit - http://code.google.com/p/as3flexunitlib/

They are both pretty similiar and both haven taken quite a bit from frameworks like JUnit.

FlexMonkey (http://code.google.com/p/flexmonkey/) although I haven't used it myself seems to do UI unit testing.

link|flag
FYI: FlexUnit has been moved to opensource.adobe.com/wiki/display/… – Andy May Dec 15 '08 at 19:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.