Update for some unit tests

This commit is contained in:
2019-11-18 14:00:08 -05:00
parent bc1f70e0dc
commit 51301528df
5 changed files with 8 additions and 26 deletions
+5 -2
View File
@@ -38,8 +38,11 @@ namespace LeafWeb.Core.Tests.Remote
[Test]
public void Unconfigured()
{
var client = new PiscalSshClient(null);
{
Assert.Throws<ArgumentNullException>(() =>
{
var piscalSshClient = new PiscalSshClient(null);
});
}
[Test, Explicit]