Tyro/tests/SFTPTest.cpp

12 lines
214 B
C++
Raw Normal View History

2015-06-24 14:12:05 -04:00
#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);
}
}