mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-09 20:29:11 +00:00
Convert TimeZoneRuleTests to xUnit
This commit is contained in:
parent
f0441bf28b
commit
678c32e515
1 changed files with 5 additions and 8 deletions
|
@ -1,18 +1,15 @@
|
||||||
using NUnit.Framework;
|
|
||||||
using Ryujinx.HLE.HOS.Services.Time.TimeZone;
|
using Ryujinx.HLE.HOS.Services.Time.TimeZone;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
|
using Xunit;
|
||||||
|
|
||||||
namespace Ryujinx.Tests.Time
|
namespace Ryujinx.Tests.Time
|
||||||
{
|
{
|
||||||
internal class TimeZoneRuleTests
|
public class TimeZoneRuleTests
|
||||||
{
|
{
|
||||||
class EffectInfoParameterTests
|
[Fact]
|
||||||
{
|
|
||||||
[Test]
|
|
||||||
public void EnsureTypeSize()
|
public void EnsureTypeSize()
|
||||||
{
|
{
|
||||||
Assert.AreEqual(0x4000, Unsafe.SizeOf<TimeZoneRule>());
|
Assert.Equal(0x4000, Unsafe.SizeOf<TimeZoneRule>());
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue