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); } } }