2014-11-28 16:15:15 +01:00
|
|
|
#pragma once
|
2015-10-15 13:04:57 +02:00
|
|
|
#ifndef MESSMER_FSPP_TEST_FUSE_UNLINK_TESTUTILS_FUSEUNLINKTEST_H_
|
|
|
|
#define MESSMER_FSPP_TEST_FUSE_UNLINK_TESTUTILS_FUSEUNLINKTEST_H_
|
2014-11-28 16:15:15 +01:00
|
|
|
|
2015-02-17 00:48:49 +01:00
|
|
|
#include "../../../testutils/FuseTest.h"
|
2014-11-28 16:15:15 +01:00
|
|
|
|
|
|
|
class FuseUnlinkTest: public FuseTest {
|
|
|
|
public:
|
|
|
|
const char *FILENAME = "/myfile";
|
|
|
|
|
|
|
|
void Unlink(const char *filename);
|
2014-12-06 15:33:01 +01:00
|
|
|
int UnlinkReturnError(const char *filename);
|
2014-11-28 16:15:15 +01:00
|
|
|
|
|
|
|
::testing::Action<void(const char*)> FromNowOnReturnDoesntExistOnLstat();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|