public void AfterMyPeerConnectWithOtherAgent_IAmUpdatedOfPeerConnection() { Interconnect(MyActor, OtherActor); OtherActor.Connect(ThirdId); Assert.True(MyAccount.GetPeer(OtherId).IsConnectedTo(ThirdId)); }
public void AfterMyPeerConnectWithMe_IAmUpdatedOfPeerConnection() { MyActor.Connect(OtherId); OtherActor.Connect(MyId); Assert.True(MyAccount.GetPeer(OtherId).IsConnectedTo(MyId)); }