libcryfs/test/fuse/fstat/testutils/FuseFstatTest.h

18 lines
547 B
C
Raw Normal View History

2014-11-25 14:29:44 +01:00
#pragma once
#ifndef TEST_FSPP_FUSE_FSTAT_TESTUTILS_FUSEFSTATTEST_H_
#define TEST_FSPP_FUSE_FSTAT_TESTUTILS_FUSEFSTATTEST_H_
2015-02-17 00:48:49 +01:00
#include "../../../testutils/FuseTest.h"
2014-11-25 14:29:44 +01:00
class FuseFstatTest: public FuseTest {
public:
2014-11-25 18:43:50 +01:00
int CreateFile(const TempTestFS *fs, const std::string &filename);
int CreateFileReturnError(const TempTestFS *fs, const std::string &filename);
2014-11-25 18:43:50 +01:00
void OnCreateAndOpenReturnFileDescriptor(const char *filename, int descriptor);
private:
int CreateFileAllowErrors(const TempTestFS *fs, const std::string &filename);
2014-11-25 14:29:44 +01:00
};
#endif