mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-06-03 00:24:14 -05:00
21 lines
435 B
C#
21 lines
435 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using PKHeX.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PKHeX.Tests.Saves.Substructures
|
|
{
|
|
[TestClass]
|
|
public class MemeCryptoTests
|
|
{
|
|
[TestMethod]
|
|
public void CanUseMemeCrypto()
|
|
{
|
|
Assert.IsTrue(MemeCrypto.CanUseMemeCrypto());
|
|
}
|
|
}
|
|
}
|