Convert audio tests to xUnit

This commit is contained in:
TSR Berry 2023-07-16 04:11:38 +02:00
parent 65d0bee674
commit 4f8394416b
No known key found for this signature in database
GPG key ID: 52353C0A4CCA15E2

View file

@ -9,7 +9,7 @@ namespace Ryujinx.Tests.Audio.Renderer.Server
[Fact]
public void EnsureTypeSize()
{
Assert.True(0x220 >= Unsafe.SizeOf<VoiceState>());
Assert.True(Unsafe.SizeOf<VoiceState>() <= 0x220);
}
}
}