From 53c72d115e48af6c5cfb40edcee9c9ccec8995e1 Mon Sep 17 00:00:00 2001 From: James Kolpack Date: Fri, 14 Sep 2018 11:03:06 -0400 Subject: [PATCH] Set some tests as explicit --- Core.Tests/Charter/ChartInputTests.cs | 2 +- Core.Tests/Remote/PiscalSshClientTests.cs | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Core.Tests/Charter/ChartInputTests.cs b/Core.Tests/Charter/ChartInputTests.cs index 305f5ca..de134ad 100644 --- a/Core.Tests/Charter/ChartInputTests.cs +++ b/Core.Tests/Charter/ChartInputTests.cs @@ -27,7 +27,7 @@ namespace LeafWeb.Core.Tests.Charter public Exception Exception; } - [Test] + [Test, Explicit] public void LeafGasComparison_Stats() { var leafgasComparisonFiles = Directory.GetFiles(ContentDirectory); diff --git a/Core.Tests/Remote/PiscalSshClientTests.cs b/Core.Tests/Remote/PiscalSshClientTests.cs index 21fcf4a..a8530e4 100644 --- a/Core.Tests/Remote/PiscalSshClientTests.cs +++ b/Core.Tests/Remote/PiscalSshClientTests.cs @@ -42,14 +42,14 @@ namespace LeafWeb.Core.Tests.Remote var client = new PiscalSshClient(null); } - [Test] + [Test, Explicit] public void SubmitLeafInputFile() { var client = GetTestClient(); client.RunLeafInput(_testInput); } - [Test] + [Test, Explicit] public void GetLeafInputStatus() { var client = GetTestClient(); @@ -57,7 +57,7 @@ namespace LeafWeb.Core.Tests.Remote Console.WriteLine(leafInputStatus); } - [Test] + [Test, Explicit] public void RetrieveLeafOutput() { var client = GetTestClient(); @@ -66,14 +66,14 @@ namespace LeafWeb.Core.Tests.Remote //Console.WriteLine(result[0].Contents.GetString()); } - [Test] + [Test, Explicit] public void CleanLeafOutput() { var client = GetTestClient(); client.CleanupLeafProcess(_testInput); } - [Test] + [Test, Explicit] public void KillLeafProcess() { var client = GetTestClient();