Skip to content

Commit

Permalink
Another test
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Apr 9, 2024
1 parent 322e357 commit 9ac27a9
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,21 @@ public void DisallowedRelease(
higherFormIdRange: 800)
.Should().Be(800);
}

[Theory, DefaultAutoData]
public void ForceUseLowerRangesWithNoListedLowerVersion(
GameRelease release,
float headerVersion)
{
HeaderVersionHelper.GetNextFormId(
release,
allowedReleases: new HashSet<GameRelease>()
{
},
headerVersion: headerVersion,
useLowerRangesVersion: null,
forceUseLowerFormIDRanges: true,
higherFormIdRange: 800)
.Should().Be(1);
}
}

0 comments on commit 9ac27a9

Please sign in to comment.