mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-24 01:37:05 +00:00
* NUnit3TestAdapter to 5.2.0 * Rename Assert class to ClassicAssert to align with NUnit 4.x changes
16 lines
367 B
C#
16 lines
367 B
C#
using NUnit.Framework;
|
|
using NUnit.Framework.Legacy;
|
|
using Ryujinx.Audio.Renderer.Server.Voice;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Audio.Renderer.Server
|
|
{
|
|
class WaveBufferTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
ClassicAssert.AreEqual(0x58, Unsafe.SizeOf<WaveBuffer>());
|
|
}
|
|
}
|
|
}
|