- How do I make one of a stub's method call the real method in ASMock?
- var audioPlayerMock:AudioPlayer = AudioPlayer(mockRepository.createStub(mockRepository.createStub(AudioPlayer));
- SetupResult.forCall(audioPlayerMock.play).(CALL_ACTUAL_PLAY_METHOD(WITH_ARGUMENT));
- SetupResult.forCall(authatoPlayerMock.play(null))
- .ignoreArguments()
- .callOriginalMethod();