class RSpec::Mocks::ClassNewMethodReference

When a class’s ‘.new` method is stubbed, we want to use the method signature from `#initialize` because `.new`’s signature is a generic ‘def new(*args)` and it simply delegates to `#initialize` and forwards all args…so the method with the actually used signature is `#initialize`.

This method reference implementation handles that specific case. @private