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