Set some tests as explicit

This commit is contained in:
2018-09-14 11:03:06 -04:00
parent 06a5810acf
commit 53c72d115e
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ namespace LeafWeb.Core.Tests.Charter
public Exception Exception; public Exception Exception;
} }
[Test] [Test, Explicit]
public void LeafGasComparison_Stats() public void LeafGasComparison_Stats()
{ {
var leafgasComparisonFiles = Directory.GetFiles(ContentDirectory); var leafgasComparisonFiles = Directory.GetFiles(ContentDirectory);
+5 -5
View File
@@ -42,14 +42,14 @@ namespace LeafWeb.Core.Tests.Remote
var client = new PiscalSshClient(null); var client = new PiscalSshClient(null);
} }
[Test] [Test, Explicit]
public void SubmitLeafInputFile() public void SubmitLeafInputFile()
{ {
var client = GetTestClient(); var client = GetTestClient();
client.RunLeafInput(_testInput); client.RunLeafInput(_testInput);
} }
[Test] [Test, Explicit]
public void GetLeafInputStatus() public void GetLeafInputStatus()
{ {
var client = GetTestClient(); var client = GetTestClient();
@@ -57,7 +57,7 @@ namespace LeafWeb.Core.Tests.Remote
Console.WriteLine(leafInputStatus); Console.WriteLine(leafInputStatus);
} }
[Test] [Test, Explicit]
public void RetrieveLeafOutput() public void RetrieveLeafOutput()
{ {
var client = GetTestClient(); var client = GetTestClient();
@@ -66,14 +66,14 @@ namespace LeafWeb.Core.Tests.Remote
//Console.WriteLine(result[0].Contents.GetString()); //Console.WriteLine(result[0].Contents.GetString());
} }
[Test] [Test, Explicit]
public void CleanLeafOutput() public void CleanLeafOutput()
{ {
var client = GetTestClient(); var client = GetTestClient();
client.CleanupLeafProcess(_testInput); client.CleanupLeafProcess(_testInput);
} }
[Test] [Test, Explicit]
public void KillLeafProcess() public void KillLeafProcess()
{ {
var client = GetTestClient(); var client = GetTestClient();