libcryfs/src/test/fspp/fuse/BasicFuseTest.cpp

18 lines
386 B
C++
Raw Normal View History

#include "gtest/gtest.h"
#include "gmock/gmock.h"
2014-11-19 00:25:57 +01:00
#include "test/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();
}