libcryfs/src/test/fspp/fuse/flush/testutils/FuseFlushTest.h

21 lines
464 B
C
Raw Normal View History

2014-11-21 20:46:39 +01:00
#pragma once
#ifndef TEST_FSPP_FUSE_FLUSH_TESTUTILS_FUSEFLUSHTEST_H_
#define TEST_FSPP_FUSE_FLUSH_TESTUTILS_FUSEFLUSHTEST_H_
#include "gtest/gtest.h"
#include "gmock/gmock.h"
#include "test/testutils/FuseTest.h"
class FuseFlushTest: public FuseTest {
public:
const std::string FILENAME = "/myfile";
void OpenAndCloseFile(const std::string &filename);
int OpenFile(const TempTestFS *fs, const std::string &filename);
void CloseFile(int fd);
2014-11-21 20:46:39 +01:00
};
#endif