mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-07 16:06:27 +02:00
15 lines
331 B
C#
15 lines
331 B
C#
using NUnit.Framework;
|
|
using Ryujinx.Audio.Renderer.Parameter;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer
|
|
{
|
|
class VoiceOutStatusTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
Assert.AreEqual(0x10, Unsafe.SizeOf<VoiceOutStatus>());
|
|
}
|
|
}
|
|
}
|