mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-03-21 17:48:28 -05:00
19 lines
472 B
C#
19 lines
472 B
C#
using Xunit;
|
|
|
|
namespace PKHeX.Core.Tests;
|
|
|
|
public static class LocalizationTests
|
|
{
|
|
[Fact]
|
|
public static void EncounterDisplay() => _ = EncounterDisplayLocalization.Cache.GetAll();
|
|
|
|
[Fact]
|
|
public static void MoveSource() => _ = MoveSourceLocalization.Cache.GetAll();
|
|
|
|
[Fact]
|
|
public static void LegalityCheck() => _ = LegalityCheckLocalization.Cache.GetAll();
|
|
|
|
[Fact]
|
|
public static void General() => _ = GeneralLocalization.Cache.GetAll();
|
|
}
|