mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-07-01 15:10:48 -07:00
16 lines
333 B
C#
16 lines
333 B
C#
using NUnit.Framework;
|
|
using Ryujinx.Audio.Renderer.Server.Voice;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer.Server
|
|
{
|
|
class WaveBufferTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
Assert.AreEqual(0x58, Unsafe.SizeOf<WaveBuffer>());
|
|
}
|
|
}
|
|
}
|