mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-01 11:41:08 +00:00
17 lines
441 B
C#
17 lines
441 B
C#
using NUnit.Framework;
|
|
using Ryujinx.Audio.Renderer.Server.Splitter;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer.Server
|
|
{
|
|
class SplitterDestinationTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
Assert.AreEqual(0xE0, Unsafe.SizeOf<SplitterDestinationVersion1>());
|
|
Assert.AreEqual(0x128, Unsafe.SizeOf<SplitterDestinationVersion2>());
|
|
}
|
|
}
|
|
}
|