archshift 3f083e0e0e Make Test a template function for easy comparison with values.
Also allows further logging and output in the future.
2014-12-10 20:15:30 -08:00

19 lines
275 B
C++

#include <3ds.h>
#include "tests/test.h"
#include "tests/fs/fs.h"
#include "tests/fs/fs_sdmc.h"
namespace FS {
void TestAll()
{
Test("FS", "Initializing service", fsInit(), 0L);
SDMC::TestAll();
Test("FS", "Exiting service", fsExit(), 0L);
}
} // namespace