id protocolMock = OCMProtocolMock(@protocol(SomeProtocol));
Will create a mock object that can be used as if it were an instance of an object that implements SomeProtocol.
Does OCMock provide a way to create a mock object that implements several protocols?