mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-08-01 02:27:10 +02:00
15 lines
336 B
C#
15 lines
336 B
C#
using NUnit.Framework;
|
|
using Ryujinx.Audio.Renderer.Common;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer.Common
|
|
{
|
|
class UpdateDataHeaderTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
Assert.AreEqual(0x40, Unsafe.SizeOf<UpdateDataHeader>());
|
|
}
|
|
}
|
|
}
|