#ifndef TEST_VFS_H
#define TEST_VFS_H
#include "../public/nsapi.h"
#include "../public/vfs.h"
#include "test.h"
#ifdef __cplusplus
extern "C" {
#endif
VFS* testvfs_create(Session *sn);
UCX_TEST(test_vfs_open);
UCX_TEST(test_vfs_mkdir);
UCX_TEST(test_vfs_opendir);
UCX_TEST(test_vfs_readdir);
UCX_TEST(test_vfs_unlink);
UCX_TEST(test_vfs_rmdir);
#ifdef __cplusplus
}
#endif
#endif