vote up 2 vote down star

I'm looking for a reliable mocking framework for ActionScript. I've been using mock-as3, but I'm annoyed with what I feel is a hack-ish solution for triggering events. There are other a few other reasons why I'd like to have some options, but not sure if I necessarily need to go into them. I've also looked into Mock4AS, but the interface appears to be cumbersome. Any finds will be appreciated, thanks.

flag

2 Answers

vote up 0 vote down check

hi,

no, there is not really any such thing (that i know of) ... mock-as3 is the best you can get, in my opinion ... there is an open issue on adobe jira, that will hopefully be addressed some day, that would solve a lot of problems ... enabling proper mocking would be just one advantage ...

link|flag
vote up 2 vote down

asmock is a dynamic mocking framework and supports triggering events as a response to a method being called. Despite still having the "beta" monikor, it has been used on several production applications (including inside a continuous integration server).

You would use it for your purpose like so:

var mock : ISometInterface = ISometInterface(mockFactory.createStrict(ISometInterface));
SetupResult.forEventDispatcher(mock); // stubs the IEventDispatcher methods
SetupResult.forCall(mock.someMethod())
           .dispatchEvent(new Event()); // dispatch an event when someMethod is called
mockFactory.replayAll();

mock.someMethod(); // will dispatch the event

If you have any issues working with asmock (or want to do something in particular), just shoot me a mail via sourceforge or put up a bug request.

A new project, based on the dynamic bytecode generation I did for asmock, has popped up called mockito (a port from the java framework).

link|flag
Thank you Richard. I am starting a greenfield project and am going to give ASMock a shot. – t3hh00d Jul 15 at 17:39
No worries. Please feel free to provide feedback through sourceforge if any of the documentation / tutorials are insufficient. – Richard Szalay Jul 16 at 12:10
I can vouch for ASMock. I use it for every project i unit test now. It's extremely stable and feature rich. – James Hay Jul 20 at 9:01
I second James : So far ASMock has proven quite mature, and quite well thought out. – Axelle Ziegler Jul 23 at 18:05
FYI, I am aware of integration issues withh the FlexUnit 4 beta. It should be resolved in an upcoming release. – Richard Szalay Jul 24 at 7:40

Your Answer

Get an OpenID
or

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