如何测试利用由Web服务引用生成的代理客户端的类?如何使用Rhino Mocks模拟WCF Web服务
我想模拟客户端,但生成的客户端界面不包含close方法,这是正确终止代理所需的。如果我不使用接口,而是使用具体的引用,我可以访问close方法,但是无法模拟代理。
我想测试一个类似的类:
public class ServiceAdapter : IServiceAdapter, IDisposable
{
// ILoggingServiceClient is generated via a Web Service reference
private readonly ILoggingServiceClient _loggingServiceClient;
public ServiceAdapter() : this(new LoggingServiceClient()) {}
internal ServiceAdapter(ILoggingServiceClient loggingServiceClient)
{
_loggingServiceClient = loggingServiceClient;
}
public void LogSomething(string msg)
{
_loggingServiceClient.LogSomething(msg);
}
public void Dispose()
{
// this doesn't compile, because ILoggingServiceClient doesn't contain Close(),
// yet Close is required to properly terminate the WCF client
_loggingServiceClient.Close();
}
}