mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-21 19:37:05 +00:00
Update NUnit to 4.4.0
* NUnit3TestAdapter to 5.2.0 * Rename Assert class to ClassicAssert to align with NUnit 4.x changes
This commit is contained in:
parent
169712a9e8
commit
457b7e77de
54 changed files with 629 additions and 576 deletions
|
|
@ -1,4 +1,5 @@
|
|||
using NUnit.Framework;
|
||||
using NUnit.Framework.Legacy;
|
||||
using Ryujinx.Audio.Renderer.Common;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
|
|
@ -9,7 +10,7 @@ namespace Ryujinx.Tests.Audio.Renderer.Common
|
|||
[Test]
|
||||
public void EnsureTypeSize()
|
||||
{
|
||||
Assert.AreEqual(0x40, Unsafe.SizeOf<UpdateDataHeader>());
|
||||
ClassicAssert.AreEqual(0x40, Unsafe.SizeOf<UpdateDataHeader>());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue