mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-02-04 21:55:30 +01:00
16 lines
365 B
C#
16 lines
365 B
C#
using NUnit.Framework;
|
|
using Ryujinx.Audio.Renderer.Parameter.Performance;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer.Parameter
|
|
{
|
|
class PerformanceOutStatusTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
Assert.AreEqual(0x10, Unsafe.SizeOf<PerformanceOutStatus>());
|
|
}
|
|
}
|
|
}
|