ForwardedPortRemoteTest_Stop_PortStarted_ChannelBound.cs 347 B

12345678910111213
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. namespace Renci.SshNet.Tests.Classes
  3. {
  4. [TestClass]
  5. public class ForwardedPortRemoteTest_Stop_PortStarted_ChannelBound : ForwardedPortRemoteTest_Dispose_PortStarted_ChannelBound
  6. {
  7. protected override void Act()
  8. {
  9. ForwardedPort.Stop();
  10. }
  11. }
  12. }