1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-03-12 10:19:38 -05:00

16 lines
338 B
C#
Raw Normal View History

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