mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-16 04:37:02 +00:00
* NUnit3TestAdapter to 5.2.0 * Rename Assert class to ClassicAssert to align with NUnit 4.x changes
16 lines
373 B
C#
16 lines
373 B
C#
using NUnit.Framework;
|
|
using NUnit.Framework.Legacy;
|
|
using Ryujinx.Audio.Renderer.Common;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer.Common
|
|
{
|
|
class UpdateDataHeaderTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
ClassicAssert.AreEqual(0x40, Unsafe.SizeOf<UpdateDataHeader>());
|
|
}
|
|
}
|
|
}
|