1 /*
2  * Copyright (c) 2018 Intel Corporation.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/ztest.h>
8 
9 #define FATFS_MNTP	"/RAM:"
10 #define TEST_ROOT	FATFS_MNTP"/"
11 #define TEST_FILE	FATFS_MNTP"/testfile.txt"
12 #define TEST_DIR	FATFS_MNTP"/testdir"
13 #define TEST_DIR_FILE	FATFS_MNTP"/testdir/testfile.txt"
14 
15 extern const char test_str[];
16 
17 void *test_mount(void);
18 void test_unmount(void *unused);
19