Add cancel

This commit is contained in:
2017-01-26 08:36:54 -05:00
parent 295b40bed8
commit 4338b4fee5
30 changed files with 333 additions and 62 deletions
+9 -2
View File
@@ -17,8 +17,8 @@ namespace LeafWeb.Core.Tests.Remote
new PiscalLeafInput
{
LeafInputId = 1,
PiscalDirectoryName = "TestDirectory3",
PhotosyntheticType = "C4_photosynthesis_leafweb",
PiscalDirectoryName = "TestDirectory",
PhotosyntheticType = "C3_photosynthesis_leafweb",
InputFiles = new[]
{
new PiscalLeafInputFile
@@ -72,5 +72,12 @@ namespace LeafWeb.Core.Tests.Remote
var client = GetTestClient();
client.CleanupLeafProcess(_testInput);
}
[Test]
public void KillLeafProcess()
{
var client = GetTestClient();
client.KillLeafProcess(_testInput);
}
}
}