using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using Renci.SshNet.Common; using Renci.SshNet.Tests.Common; namespace Renci.SshNet.Tests.Classes.Common { /// ///This is a test class for ExceptionEventArgsTest and is intended ///to contain all ExceptionEventArgsTest Unit Tests /// [TestClass] public class ExceptionEventArgsTest : TestBase { /// ///A test for ExceptionEventArgs Constructor /// [TestMethod] public void ExceptionEventArgsConstructorTest() { Exception exception = null; // TODO: Initialize to an appropriate value ExceptionEventArgs target = new ExceptionEventArgs(exception); Assert.Inconclusive("TODO: Implement code to verify target"); } } }