mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-20 17:51:13 +02:00
* NUnit3TestAdapter to 5.2.0 * Rename Assert class to ClassicAssert to align with NUnit 4.x changes
17 lines
389 B
C#
17 lines
389 B
C#
using NUnit.Framework;
|
|
using NUnit.Framework.Legacy;
|
|
using Ryujinx.Audio.Renderer.Parameter;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer
|
|
{
|
|
class AudioRendererConfigurationTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
ClassicAssert.AreEqual(0x34, Unsafe.SizeOf<AudioRendererConfiguration>());
|
|
}
|
|
}
|
|
}
|