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

18 lines
417 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_
2015-02-17 00:48:49 +01:00
#include "../../../testutils/FuseTest.h"
2014-11-21 20:46:39 +01:00
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