Files
LeafWeb/Core.Tests/Remote/PiscalSshClientTests.cs
T
poprhythm 15d911c86b Add PhotosynthesisType and start SSH work
modified:   Core.Tests/Core.Tests.csproj
	modified:   Core.Tests/Parsers/FluxnetSiteCsvParserTests.cs
	new file:   Core.Tests/Remote/PiscalSshClientTests.cs
	modified:   Core/Core.csproj
	modified:   Core/DAL/LeafWebContext.cs
	modified:   Core/DAL/LeafWebInitializer.cs
	modified:   Core/Models/LeafInput.cs
	new file:   Core/Models/PhotosynthesisType.cs

	new file:   Core/Remote/IPiscalClient.cs

Get Piscal
2016-02-09 15:27:02 -05:00

18 lines
345 B
C#

using LeafWeb.Core.Models;
using NUnit.Framework;
namespace LeafWeb.Core.Tests.Remote
{
[TestFixture]
public class PiscalSshClientTests
{
[Test]
public void Client()
{
var leafInputFile = new LeafInputFile {Filename = "blah", Id = 1};
var client = new PiscalSshClient();
client.SubmitLeafInputFile(leafInputFile);
}
}
}