mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-02 21:16:25 +02:00
15 lines
354 B
C#
15 lines
354 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<SplitterDestination>());
|
|
}
|
|
}
|
|
}
|