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