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;
}
[Test]
[Test, Explicit]
public void LeafGasComparison_Stats()
{
var leafgasComparisonFiles = Directory.GetFiles(ContentDirectory);
+5 -5
View File
@@ -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();