Upgrade tests to xunit v3

This commit is contained in:
Haselnussbomber 2026-02-16 23:01:04 +01:00
parent 2deeacd443
commit c33753c1f8
No known key found for this signature in database
GPG key ID: BB905BB49E7295D1
4 changed files with 22 additions and 78 deletions

View file

@ -17,14 +17,14 @@ namespace Dalamud.Test.Game.Text.SeStringHandling
public SeString Text { get; init; }
public bool Equals(MockConfig other)
public bool Equals(MockConfig? other)
{
if (ReferenceEquals(null, other)) return false;
if (ReferenceEquals(this, other)) return true;
return Version == other.Version && Equals(Text.TextValue, other.Text.TextValue);
}
public override bool Equals(object obj)
public override bool Equals(object? obj)
{
return Equals(obj as MockConfig);
}