mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
20 lines
465 B
C#
20 lines
465 B
C#
|
using LibHac.Fs;
|
|||
|
using Xunit;
|
|||
|
|
|||
|
namespace LibHac.Tests.Fs.IFileSystemTestBase
|
|||
|
{
|
|||
|
public abstract partial class IFileSystemTests
|
|||
|
{
|
|||
|
[Fact]
|
|||
|
public void OpenFile_PathIsDirectory_ReturnsPathNotFound()
|
|||
|
{
|
|||
|
IFileSystem fs = CreateFileSystem();
|
|||
|
|
|||
|
fs.CreateDirectory("/dir");
|
|||
|
|
|||
|
Result rc = fs.OpenFile(out _, "/dir", OpenMode.All);
|
|||
|
|
|||
|
Assert.Equal(ResultFs.PathNotFound.Value, rc);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|