In flex I want to do something similar to the following

var audioPlayerMock:AudioPlayer = AudioPlayer(mockRepository.createStub(mockRepository.createStub(AudioPlayer));
SetupResult.forCall(audioPlayerMock.play).(CALL_ACTUAL_PLAY_METHOD(WITH_ARGUMENT));

AudioPlayer has a lot of methods that I want stubbed, (so I use mockRepository.creatStub()). But there is one method, play(), that I want to call the actual actual method (super.play(argument) if my thinking is right). I'm not sure how to do this?

I know I can use createDynamic(AudioPlayer) then stub out every other method, but that is a bit tedious.

Cheers

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can use IMethodOptions.callOriginalMethod() to call the actual implementation on a stubbed class:

SetupResult.forCall(authatoPlayerMock.play(null))
    .ignoreArguments()
    .callOriginalMethod();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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