2014-11-28 16:15:15 +01:00
|
|
|
#pragma once
|
|
|
|
#ifndef TEST_FSPP_FUSE_UNLINK_TESTUTILS_FUSEUNLINKTEST_H_
|
|
|
|
#define TEST_FSPP_FUSE_UNLINK_TESTUTILS_FUSEUNLINKTEST_H_
|
|
|
|
|
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
|