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:
KeatonTheBot 2025-10-19 23:01:06 -05:00
parent 169712a9e8
commit 457b7e77de
54 changed files with 629 additions and 576 deletions

View file

@ -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>());
}
}
}