Skip to content

Commit 955ad97

Browse files
committed
Added missing "TestMethod" annotation
1 parent 54a07a8 commit 955ad97

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Mastercard.Developer.OAuth1Signer.Tests/NetCore/Signers/NetHttpClientSignerTest.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ public void TestSign_ShouldAddOAuth1HeaderToGetRequest()
6767
Assert.IsNotNull(request.Headers.Authorization);
6868
}
6969

70-
public void TestSign_ShoulThrowArgumentNullException_WhenNullRequest()
70+
[TestMethod]
71+
public void TestSign_ShouldThrowArgumentNullException_WhenNullRequest()
7172
{
7273
Assert.ThrowsException<ArgumentNullException>(() =>
7374
{
@@ -105,7 +106,8 @@ public async Task TestSignAsync_ShouldAddOAuth1HeaderToGetRequest()
105106
Assert.IsNotNull(request.Headers.Authorization);
106107
}
107108

108-
public void TestSignAsync_ShoulThrowArgumentNullException_WhenNullRequest()
109+
[TestMethod]
110+
public void TestSignAsync_ShouldThrowArgumentNullException_WhenNullRequest()
109111
{
110112
Assert.ThrowsException<ArgumentNullException>(() =>
111113
{

0 commit comments

Comments
 (0)