mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
feef0ff63f
- Experiment with using Catch/Handle/Rethrow for logging Results - Try adding a new Ret function for logging results - Misc tweaks
33 lines
No EOL
820 B
C#
33 lines
No EOL
820 B
C#
using LibHac.Common;
|
|
using LibHac.Fs;
|
|
using LibHac.Fs.Fsa;
|
|
using Xunit;
|
|
|
|
namespace LibHac.Tests.Fs.IFileSystemTestBase;
|
|
|
|
public abstract partial class IFileSystemTests
|
|
{
|
|
[Fact]
|
|
public void OpenFile_PathIsDirectory_ReturnsPathNotFound()
|
|
{
|
|
IFileSystem fs = CreateFileSystem();
|
|
|
|
fs.CreateDirectory("/dir");
|
|
|
|
using var file = new UniqueRef<IFile>();
|
|
Result rc = fs.OpenFile(ref file.Ref(), "/dir", OpenMode.All);
|
|
|
|
Assert.Result(ResultFs.PathNotFound, rc);
|
|
}
|
|
|
|
[Fact]
|
|
public void OpenFile_PathDoesNotExist_ReturnsPathNotFound()
|
|
{
|
|
IFileSystem fs = CreateFileSystem();
|
|
|
|
using var file = new UniqueRef<IFile>();
|
|
Result rc = fs.OpenFile(ref file.Ref(), "/file", OpenMode.All);
|
|
|
|
Assert.Result(ResultFs.PathNotFound, rc);
|
|
}
|
|
} |