mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-09-15 21:17:54 -05:00
17 lines
415 B
C#
17 lines
415 B
C#
using NUnit.Framework;
|
|
using Ryujinx.Audio.Renderer.Parameter;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer
|
|
{
|
|
class EffectOutStatusTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
Assert.AreEqual(0x10, Unsafe.SizeOf<EffectOutStatusVersion1>());
|
|
Assert.AreEqual(0x90, Unsafe.SizeOf<EffectOutStatusVersion2>());
|
|
}
|
|
}
|
|
}
|