libcryfs/test/fuse/BasicFuseTest.cpp

15 lines
333 B
C++
Raw Normal View History

2015-02-17 00:48:49 +01:00
#include "../testutils/FuseTest.h"
using namespace fspp::fuse;
using namespace fspp::fuse;
2014-11-19 00:40:46 +01:00
2014-11-19 00:15:37 +01:00
using ::testing::_;
using ::testing::StrEq;
2014-11-19 16:16:43 +01:00
typedef FuseTest BasicFuseTest;
2014-11-19 00:15:37 +01:00
2014-11-20 20:04:39 +01:00
//This test case simply checks whether a filesystem can be setup and teardown without crashing.
2014-11-19 16:16:43 +01:00
TEST_F(BasicFuseTest, setupAndTearDown) {
2014-11-19 00:15:37 +01:00
auto fs = TestFS();
}