mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
fc754b346b
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces) Updates all the files, one less level of indentation. Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
using FluentAssertions;
|
|
using PKHeX.Core;
|
|
using System.IO;
|
|
using Xunit;
|
|
|
|
namespace PKHeX.Tests.Saves;
|
|
|
|
public static class SMTests
|
|
{
|
|
private static SAV7 GetSave()
|
|
{
|
|
var folder = TestUtil.GetRepoPath();
|
|
var path = Path.Combine(folder, "TestData", "SM Project 802.main");
|
|
return new SAV7SM(File.ReadAllBytes(path));
|
|
}
|
|
|
|
[Fact]
|
|
public static void ChecksumsValid()
|
|
{
|
|
GetSave().ChecksumsValid.Should().BeTrue();
|
|
}
|
|
|
|
[Fact]
|
|
public static void ChecksumsUpdate()
|
|
{
|
|
var save = GetSave();
|
|
var originalChecksumInfo = save.ChecksumInfo;
|
|
var newSave = new SAV7SM(save.Write());
|
|
|
|
save.ChecksumInfo.Should().BeEquivalentTo(originalChecksumInfo, "because the checksum should have been modified");
|
|
save.ChecksumsValid.Should().BeTrue("because the checksum should be valid after write");
|
|
newSave.ChecksumsValid.Should().BeTrue("because the checksums should be valid after reopening the save");
|
|
newSave.ChecksumInfo.Should().BeEquivalentTo(save.ChecksumInfo, "because the checksums should be the same since write and open");
|
|
}
|
|
}
|