1 /*
2  * Copyright (c) 2019 Peter Bigot Consulting, LLC
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef _ZEPHYR_TESTS_SUBSYS_FS_LITTLEFS_TESTFS_TESTS_H_
8 #define  _ZEPHYR_TESTS_SUBSYS_FS_LITTLEFS_TESTFS_TESTS_H_
9 
10 /* Tests in test_util */
11 void test_util_path_init_base(void);
12 void test_util_path_init_overrun(void);
13 void test_util_path_init_extended(void);
14 void test_util_path_extend(void);
15 void test_util_path_extend_up(void);
16 void test_util_path_extend_overrun(void);
17 
18 /* Tests in test_lfs_basic */
19 void test_lfs_basic(void);
20 
21 /* Tests in test_lfs_dirops */
22 void test_lfs_dirops(void);
23 
24 /* Tests in test_lfs_perf */
25 void test_lfs_perf(void);
26 
27 /* Test fs_open flags */
28 void test_fs_open_flags_lfs(void);
29 
30 /* Test fs_mount flags */
31 void test_fs_mount_flags(void);
32 
33 #endif /* _ZEPHYR_TESTS_SUBSYS_FS_LITTLEFS_TESTFS_TESTS_H_ */
34