Tyro/tests/SFTPTest.cpp
2015-06-24 14:12:05 -04:00

12 lines
214 B
C++

#include "catch.hpp"
#include "../src/base/network/SFTP.h"
TEST_CASE("SFTP Library")
{
SFTP *sftp = new SFTP("localhost", "user", "pass", "/", "22");
SECTION("Sanity check")
{
REQUIRE(sftp != nullptr);
}
}