mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-29 04:26:24 +02:00
15 lines
339 B
C#
15 lines
339 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>());
|
|
}
|
|
}
|
|
}
|