Subfolder private unit test files

Allows differentiation of certain check types
This commit is contained in:
Kurt
2021-08-06 13:45:32 -07:00
parent 754e7ab821
commit feb2eab7e5

View File

@@ -41,9 +41,12 @@ public void TestFilesPassOrFailLegalityChecks()
public void TestPrivateFiles()
{
var folder = TestUtil.GetRepoPath();
folder = Path.Combine(folder, "Legality");
folder = Path.Combine(folder, "Legality", "Private");
ParseSettings.AllowGBCartEra = true;
VerifyAll(folder, "Private", true);
VerifyAll(folder, "Legal", true);
VerifyAll(folder, "Illegal", false);
VerifyAll(folder, "PassingHacks", true); // mad hacks, stuff to be flagged in the future
VerifyAll(folder, "FalseFlags", false); // legal quirks, to be fixed in the future
}
// ReSharper disable once UnusedParameter.Local