Tyro/tests/SFTPest.cpp

12 lines
206 B
C++
Raw Normal View History

2015-06-24 14:12:05 -04:00
#include "catch.hpp"
2015-07-02 15:05:05 -04:00
#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);
}
}