我正在兜圈子试图找出这个错误。我正在使用 moq 框架执行模拟测试。测试代码是
[TestFixture]
[ServiceContract]
public class UnitTest1
{
private ServiceHost host;
[Test]
public void TestMethod()
{
Mock mk = new Mock<ChatInterfaces.IChatService>();
host = new ServiceHost(mk);
host.AddServiceEndpoint(typeof(IChatService), new NetTcpBinding()
, "net.tcp://localhost:8080/ChatService");
host.Open();
Console.WriteLine("Testing");
App.Config 文件具有以下绑定
<system.serviceModel>
<services>
<service name="ChatInterfaces.IChatService">
<endpoint address="net.tcp://localhost:8080/ChatService" binding="netTcpBinding" bindingConfiguration="BindingConfiguration" name="ChatServiceEndPoint" contract="ChatInterfaces.IChatService">
</endpoint>
</service>
</services>
<bindings>
<netTcpBinding>
<binding name="BindingConfiguration" transferMode="Buffered"/>
</netTcpBinding>
</bindings>
</system.serviceModel>
当我运行它时,我得到以下错误。
Result Message: System.InvalidOperationException : The contract name 'ChatInterfaces.IChatService' could not be found in the list of contracts implemented by the service 'Moq.Mock`1[[ChatInterfaces.IChatService, ChatInterfaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'.
我在这里做错了什么以及如何解决?谢谢