Skip to content

Commit

Permalink
Reintroduce back MaimaiInquiryService tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
swyrin committed Sep 2, 2024
1 parent a1f6f9a commit b7b7bb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MSOC.Backend.Tests/Unit/MaimaiInquiryServiceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public MaimaiInquiryServiceTest(GameApplicationFactory<Program> factory)
_factory = factory;
}

[Theory(Skip = "Rely much on internet speed.")]
[Theory]
[InlineData(1234)]
[InlineData(69420)]
[InlineData(177013)]
Expand All @@ -27,7 +27,7 @@ public async Task InvalidFriendCodeTest(ulong friendCode)
Assert.StrictEqual(0, result.Length);
}

[Theory(Skip = "Rely much on internet speed.")]
[Theory]
[InlineData(9051555929120)]
[InlineData(8095773611588)]
[InlineData(9020119099087)]
Expand All @@ -44,7 +44,7 @@ public async Task ValidFamiliarFriendCodeTest(ulong friendCode)
Assert.NotEmpty((result[2] as IHtmlImageElement)!.Source!);
}

[Theory(Skip = "Rely much on internet speed.")]
[Theory]
[InlineData(8069933165057)]
public async Task ValidStrangerFriendCodeTest(ulong friendCode)
{
Expand Down

0 comments on commit b7b7bb1

Please sign in to comment.