Ejemplo n.º 1
0
        public void OnReconnectingExplicitImplementationCallsIntoProtectedOnReconnecting()
        {
            var connectionFake = new HubConnectionFake();

            ((IConnection)connectionFake).OnReconnecting();
            Assert.True(connectionFake.OnReconnectingInvoked);
        }
Ejemplo n.º 2
0
 public void OnReconnectingExplicitImplementationCallsIntoProtectedOnReconnecting()
 {
     var connectionFake = new HubConnectionFake();
     ((IConnection)connectionFake).OnReconnecting();
     Assert.True(connectionFake.OnReconnectingInvoked);
 }