LibHac/tests/LibHac.Tests/Fs/InMemoryFileSystemTests.cs
2021-11-14 18:36:53 -07:00

18 lines
415 B
C#

using LibHac.Fs;
using LibHac.Fs.Fsa;
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();
}
}