mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-26 14:08:03 +02:00
* NUnit3TestAdapter to 5.2.0 * Rename Assert class to ClassicAssert to align with NUnit 4.x changes
17 lines
395 B
C#
17 lines
395 B
C#
using NUnit.Framework;
|
|
using NUnit.Framework.Legacy;
|
|
using Ryujinx.Audio.Renderer.Parameter.Effect;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer.Parameter.Effect
|
|
{
|
|
class Reverb3dParameterTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
ClassicAssert.AreEqual(0x49, Unsafe.SizeOf<Reverb3dParameter>());
|
|
}
|
|
}
|
|
}
|