LibHac/tests/LibHac.Tests/Fs/InMemoryFileSystemTests.cs
Alex Barney 3139f6900e Add common IFileSystem tests
Change GetFileAttributes method signature
2020-01-29 17:33:42 -07:00

18 lines
440 B
C#

using LibHac.Fs;
using LibHac.Tests.Fs.IFileSystemTestBase;
namespace LibHac.Tests.Fs
{
public class InMemoryFileSystemTests : IAttributeFileSystemTests
{
protected override IFileSystem CreateFileSystem()
{
return new InMemoryFileSystem();
}
protected override IAttributeFileSystem CreateAttributeFileSystem()
{
return new InMemoryFileSystem();
}
}
}