mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-10 01:05:42 +00:00
03ae6bfa0f
* Bump the dependencies group with 4 updates Bumps BouncyCastle.Cryptography from 2.6.1 to 2.6.2 Bumps Meziantou.Analyzer from 2.0.205 to 2.0.210 Bumps MSTest from 3.9.3 to 3.10.0 Bumps SonarAnalyzer.CSharp from 10.13.0.120203 to 10.15.0.120848 Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rob Hague <rob.hague00@gmail.com>
28 lines
783 B
C#
28 lines
783 B
C#
using System;
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
using Renci.SshNet.Tests.Common;
|
|
|
|
namespace Renci.SshNet.Tests.Classes
|
|
{
|
|
/// <summary>
|
|
/// Provides functionality to perform keyboard interactive authentication.
|
|
/// </summary>
|
|
[TestClass]
|
|
public partial class KeyboardInteractiveAuthenticationMethodTest : TestBase
|
|
{
|
|
[TestMethod]
|
|
public void Keyboard_Test_Pass_Null()
|
|
{
|
|
Assert.ThrowsExactly<ArgumentNullException>(() => new KeyboardInteractiveAuthenticationMethod(null));
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Keyboard_Test_Pass_Whitespace()
|
|
{
|
|
Assert.ThrowsExactly<ArgumentException>(() => new KeyboardInteractiveAuthenticationMethod(string.Empty));
|
|
}
|
|
}
|
|
}
|