mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-22 02:13:10 +00: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());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|