mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-28 09:32:54 +00:00
16 lines
323 B
C#
16 lines
323 B
C#
using NUnit.Framework;
|
|
using Ryujinx.Audio.Renderer.Server.Mix;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer.Server
|
|
{
|
|
class MixInfoTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
Assert.AreEqual(0x940, Unsafe.SizeOf<MixInfo>());
|
|
}
|
|
}
|
|
}
|