Ejemplo n.º 1
0
        public void SendServerMessageC()
        {
            ServerProxy.ServerMethodC(new List <byte>()
            {
                0, 1, 2
            }, new [] { 0, 1, 2 });

            Assert.IsTrue(Server.MethodCalls.Any());
            Assert.AreEqual(Server.MethodCalls[0].MethodName, nameof(ServerMock.ServerMethodC));
        }