mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-25 18:32:23 -05:00
16 lines
355 B
C#
16 lines
355 B
C#
using NUnit.Framework;
|
|
using Ryujinx.Audio.Renderer.Parameter;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer
|
|
{
|
|
class AudioRendererConfigurationTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
Assert.AreEqual(0x34, Unsafe.SizeOf<AudioRendererConfiguration>());
|
|
}
|
|
}
|
|
}
|