| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 | using System;using System.Globalization;using Microsoft.VisualStudio.TestTools.UnitTesting;using Renci.SshNet.Tests.Common;namespace Renci.SshNet.Tests.Classes{    /// <summary>    /// Provides functionality for "none" authentication method    /// </summary>    [TestClass]    public class NoneAuthenticationMethodTest : TestBase    {        [TestMethod]        [ExpectedException(typeof(ArgumentNullException))]        public void None_Test_Pass_Null()        {            new NoneAuthenticationMethod(null);        }        [TestMethod]        [ExpectedException(typeof(ArgumentException))]        public void None_Test_Pass_Whitespace()        {            new NoneAuthenticationMethod(string.Empty);        }        [TestMethod]        public void Name()        {            var username = new Random().Next().ToString(CultureInfo.InvariantCulture);            var target = new NoneAuthenticationMethod(username);            Assert.AreEqual("none", target.Name);        }        [TestMethod]        public void Username()        {            var username = new Random().Next().ToString(CultureInfo.InvariantCulture);            var target = new NoneAuthenticationMethod(username);            Assert.AreSame(username, target.Username);        }    }}
 |