mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-30 01:07:11 +02:00
18 lines
410 B
C#
18 lines
410 B
C#
using NUnit.Framework;
|
|
using Ryujinx.HLE.HOS.Services.Time.TimeZone;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Ryujinx.Tests.Time
|
|
{
|
|
internal class TimeZoneRuleTests
|
|
{
|
|
class EffectInfoParameterTests
|
|
{
|
|
[Test]
|
|
public void EnsureTypeSize()
|
|
{
|
|
Assert.AreEqual(0x4000, Unsafe.SizeOf<TimeZoneRule>());
|
|
}
|
|
}
|
|
}
|
|
}
|