Hi folks,
I have some code that I'm having a hard time unit testing. Here's the code
var actionLogClass = _entityTypes.GetClass(General.IncidentAnalystCommentLogClass, WorkItemLibraryManagmentPack);
var cemo = new CreatableEnterpriseManagementObject(_managementGroup, actionLogClass);
The actionLogClass is of type ManagementPackClass, which inherits from the abstract class ManagementPackType. This constructor for CreatableEnterpriseManagementObject takes as a second argument the ManagementPackClass concrete type.
I have the following TypeMock code in my unit test:
var fakeMpClass = Isolate.Fake.Instance<ManagementPackClass>(Members.ReturnRecursiveFakes);
Isolate.WhenCalled(() => _fakeEntityTypes.GetClass(General.IncidentAnalystCommentLogClass, fakeManagementPack)).WillReturn(fakeMpClass);
The trouble is that the fakeMpClass is not of type MockManagementPackClass, it's of type MockManagementPackType, leading to the following error on the constructor code:
System.InvalidCastException: Unable to cast object of type 'Mock0009ManagementPackType' to type 'Microsoft.EnterpriseManagement.Configuration.ManagementPackClass'.
How do I go about making sure that my Isolate.Fake<> returns a mock of the concrete class and not the abstract class?
Thanks in advance!