CSPspEmu.Hle.Modules.Tests.iofilemgr.umd.ioctlTest.GetSectorSizeTest C# (CSharp) Method

GetSectorSizeTest() private method

private GetSectorSizeTest ( ) : void
return void
        public void GetSectorSizeTest()
        {
            uint SectorSize;

            var result = IoFileMgrForUser.sceIoIoctl(
                FileHandle: BootBinFileHandle,
                Command: (uint)HleIoDriverIso.UmdCommandEnum.GetSectorSize,
                InputPointer: null,
                InputLength: 0,
                OutputPointer: (byte*)&SectorSize,
                OutputLength: sizeof(uint)
            );

            Assert.AreEqual(IsoFile.SectorSize, SectorSize);
        }