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
20 lines
447 B
C#
20 lines
447 B
C#
using NUnit.Framework;
|
|
using NUnit.Framework.Legacy;
|
|
using Ryujinx.HLE.HOS.Services.Time.TimeZone;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Time
|
|
{
|
|
internal class TimeZoneRuleTests
|
|
{
|
|
class EffectInfoParameterTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
ClassicAssert.AreEqual(0x4000, Unsafe.SizeOf<TimeZoneRule>());
|
|
}
|
|
}
|
|
}
|
|
}
|