I'm using NUnit and Moq to test a class which uses a generic WCF service client wrapper I wrote, and I've run into an error I can't figure out. I have the following interface:
public interface IService
{
void Call();
}
...implemented by the following service client:
public class ServiceClient : ClientBase<IService>, IService
{
public void Call()
{
}
}
...and wrapped by this class with the following generic constraints:
public class ServiceClientWrapper<TClient, TService>
where TClient : ClientBase<TService>, TService
where TService : class
{
public virtual TService CreateServiceClient()
{
return (TService)Activator.CreateInstance<TClient>();
}
}
To make it testable I have a wrapper factory which I can mock. The wrapper factory interface is this:
public interface IServiceClientWrapperFactory
{
ServiceClientWrapper<TClient, TService>
CreateServiceClientWrapper<TClient, TService>()
where TClient : ClientBase<TService>, TService
where TService : class;
}
I test this set up using this code:
// A mock IService to return from my mock service wrapper:
var mockService = new Mock<IService>();
// A mock client wrapper to return from my mock wrapper factory:
var mockClientWrapper =
new Mock<ServiceClientWrapper<ServiceClient, IService>>();
mockClientWrapper
.Setup(mcw => mcw.CreateServiceClient())
.Returns(mockService.Object);
// A mock wrapper factory to inject into a client object:
var mockClientWrapperFactory = new Mock<IServiceClientWrapperFactory>();
mockClientWrapperFactory
.Setup(mcwf => mcwf.CreateServiceClientWrapper<ServiceClient, IService>())
.Returns(mockClientWrapper.Object);
// Get the mock client wrapper from the mock wrapper factory - boom!
mockClientWrapperFactory.Object
.CreateServiceClientWrapper<ServiceClient, IService>();
The error is:
GenericArguments[0], 'TService', on 'ServiceClientWrapper`2[TClient,TService]' violates the constraint of type parameter 'TClient'.
The constraints are the same wherever I've stated them, it compiles and runs just fine, the error isn't thrown if I implement IServiceClientWrapperFactory and run it without Moq... any ideas?
return (TService)Activator.CreateInstance<TClient>();, couldn't you just add thenew()constraint, and new it up directly? Also, it seems like you're making a simple problem much harder than it needs to be. I don't see the rest of your code, but it seems like you could simply injectIServiceinto the classes that use them, and throw away all this code. – Merlyn Morgan-Graham Jul 4 '11 at 21:02