2014-11-27 12:54:29 -05:00

23 lines
333 B
C++

#include <3ds.h>
#include "tests/test.h"
#include "tests/fs/fs.h"
#include "tests/fs/fs_sdmc.h"
namespace FS {
void TestAll()
{
TestResult("FS", "Initializing service", [&]{
return fsInit();
});
SDMC::TestAll();
TestResult("FS", "Exiting service", [&]{
return fsExit();
});
}
} // namespace