fumeng
fumeng

Reputation: 1820

ActionScript: Automated Test Frameworks

I've just been tasked with finding automated actionscript frameworks. Can anyone offer the best out there? I'm just beginning to write the code for my project. Is it better for me to keep my MXML and AS in separate files so I can more easily integrate with any frameworks....or does it even matter?

Thanks for any helpful tips!

Upvotes: 0

Views: 521

Answers (2)

mbaker3
mbaker3

Reputation: 1173

I'm a big fan of AsUnit I've used it in combination with both Hudson build manager and TeamCity with great results

Upvotes: 1

Jacob Eggers
Jacob Eggers

Reputation: 9322

FlexUnit is a good unit testing framework.

For continuous integration, I've used jenkins, maven, flex-mojos. That will require a bit more work to setup, but it is well worth the effort.

If you need functional testing, I haven't used it myself, but I have heard that Flex Monkey is pretty good.

Upvotes: 3

Related Questions