When exactly do we need to use the .As
method provided by Moq?
From the Quickstart documentation:
// implementing multiple interfaces in mock
var foo = new Mock<IFoo>();
var disposableFoo = foo.As<IDisposable>();
// now the IFoo mock also implements IDisposable :)
disposableFoo.Setup(df => df.Dispose());
But I just don't get why we would want to do that. Could you give me a practical example?
Okay, so an example. Let's say you have a transportation management software to manage movement of cars, flights, etc. There are different vehicles but they move on land or air (no sea to simplify the sample).
And there is an express transport option for a vehicle/aircraft.
There is a transport manager class which is responsible for moving all the vehicles/aircraft. And it handles express means of transportation bit differently than regular ones (for the sake of simplicity in this sample it only prints a different message depending whether it's IExpressTransport or not):
Now you would like to test if an airplane behaves differently than a car. And also, if a regular flight is handled differently than an express one. So you test your object as an
IMovingInAir
object and asIExpressTransport
. To test only flight behaviour you can simply create it asMock<IMovingInAir>
. But to extend a flight to an express one you have to useAs<IExpressTransport>()
method: