1 /*
2  * Copyright (c) 2016 Intel Corporation.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /**
8  * @addtogroup t_fat_fs
9  * @{
10  * @defgroup t_fat_fs_basic test_fat_fs_basic_operations
11  * @}
12  */
13 
14 #include "test_fat.h"
15 
fat_fs_dual_drive_setup(void)16 static void *fat_fs_dual_drive_setup(void)
17 {
18 	fs_file_t_init(&filep);
19 
20 	test_fat_mount();
21 	return NULL;
22 }
23 ZTEST_SUITE(fat_fs_dual_drive, NULL, fat_fs_dual_drive_setup, NULL, NULL, NULL);
24