1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-27 10:06:46 -06:00

16 lines
363 B
C#
Raw Normal View History

using NUnit.Framework;
using Ryujinx.Audio.Renderer.Parameter.Effect;
using System.Runtime.CompilerServices;
namespace Ryujinx.Tests.Audio.Renderer.Parameter.Effect
{
class AuxParameterTests
{
[Test]
public void EnsureTypeSize()
{
Assert.AreEqual(0x6C, Unsafe.SizeOf<AuxiliaryBufferParameter>());
}
}
}