using Renci.SshNet.Common; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using Renci.SshNet.Tests.Common; namespace Renci.SshNet.Tests.Classes.Common { /// ///This is a test class for AuthenticationPasswordChangeEventArgsTest and is intended ///to contain all AuthenticationPasswordChangeEventArgsTest Unit Tests /// [TestClass()] public class AuthenticationPasswordChangeEventArgsTest : TestBase { /// ///A test for AuthenticationPasswordChangeEventArgs Constructor /// [TestMethod()] public void AuthenticationPasswordChangeEventArgsConstructorTest() { string username = string.Empty; // TODO: Initialize to an appropriate value AuthenticationPasswordChangeEventArgs target = new AuthenticationPasswordChangeEventArgs(username); Assert.Inconclusive("TODO: Implement code to verify target"); } /// ///A test for NewPassword /// [TestMethod()] public void NewPasswordTest() { string username = string.Empty; // TODO: Initialize to an appropriate value AuthenticationPasswordChangeEventArgs target = new AuthenticationPasswordChangeEventArgs(username); // TODO: Initialize to an appropriate value byte[] expected = null; // TODO: Initialize to an appropriate value byte[] actual; target.NewPassword = expected; actual = target.NewPassword; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); } } }