2014-11-28 16:06:28 +01:00
|
|
|
#pragma once
|
|
|
|
#ifndef TEST_FSPP_FUSE_RMDIR_TESTUTILS_FUSERMDIRTEST_H_
|
|
|
|
#define TEST_FSPP_FUSE_RMDIR_TESTUTILS_FUSERMDIRTEST_H_
|
|
|
|
|
2015-02-17 00:48:49 +01:00
|
|
|
#include "../../../testutils/FuseTest.h"
|
2014-11-28 16:06:28 +01:00
|
|
|
|
|
|
|
class FuseRmdirTest: public FuseTest {
|
|
|
|
public:
|
|
|
|
const char *DIRNAME = "/mydir";
|
|
|
|
|
|
|
|
void Rmdir(const char *dirname);
|
2014-12-06 15:33:01 +01:00
|
|
|
int RmdirReturnError(const char *dirname);
|
2014-11-28 16:06:28 +01:00
|
|
|
|
|
|
|
::testing::Action<void(const char*)> FromNowOnReturnDoesntExistOnLstat();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|