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";
|
|
|
|
|
2014-12-06 15:33:01 +01:00
|
|
|
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
|