blob: 7b09d18cc53fc8af813439bce883ab87cb957536 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using NUnit.Framework;
using Ryujinx.Audio.Renderer.Common;
using System.Runtime.CompilerServices;
namespace Ryujinx.Tests.Audio.Renderer.Common
{
class VoiceUpdateStateTests
{
[Test]
public void EnsureTypeSize()
{
Assert.LessOrEqual(Unsafe.SizeOf<VoiceUpdateState>(), 0x100);
}
}
}
|