mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
21 lines
No EOL
519 B
C#
21 lines
No EOL
519 B
C#
using LibHac.Fs;
|
|
using LibHac.Fs.Fsa;
|
|
using Xunit;
|
|
|
|
namespace LibHac.Tests.Fs.IFileSystemTestBase
|
|
{
|
|
public abstract partial class IFileSystemTests
|
|
{
|
|
[Fact]
|
|
public void OpenDirectory_PathIsFile_ReturnsPathNotFound()
|
|
{
|
|
IFileSystem fs = CreateFileSystem();
|
|
|
|
fs.CreateFile("/file", 0, CreateFileOptions.None);
|
|
|
|
Result rc = fs.OpenDirectory(out _, "/file", OpenDirectoryMode.All);
|
|
|
|
Assert.Result(ResultFs.PathNotFound, rc);
|
|
}
|
|
}
|
|
} |