Tyro/tests/SFTPest.cpp

12 lines
209 B
C++
Raw Permalink Normal View History

2015-07-07 10:01:17 -04:00
#include "tests/catch.hpp"
#include "src/base/SFTP.h"
2015-06-24 14:12:05 -04:00
TEST_CASE("SFTP Library")
{
SFTP *sftp = new SFTP("localhost", "user", "pass", "/", "22");
SECTION("Sanity check")
{
REQUIRE(sftp != nullptr);
}
}