mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-25 14:11:48 +01:00
Upgrade tests to xunit v3
This commit is contained in:
parent
2deeacd443
commit
c33753c1f8
4 changed files with 22 additions and 78 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue