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

18 lines
433 B
C
Raw Normal View History

2014-11-21 20:46:39 +01:00
#pragma once
2015-10-15 13:04:57 +02:00
#ifndef MESSMER_FSPP_TEST_FUSE_FLUSH_TESTUTILS_FUSEFLUSHTEST_H_
#define MESSMER_FSPP_TEST_FUSE_FLUSH_TESTUTILS_FUSEFLUSHTEST_H_
2014-11-21 20:46:39 +01:00
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