Skip to content

Commit fd1150a

Browse files
committed
Add unit test for decimal arguments in DecimalArgumentTests
1 parent cafd7d0 commit fd1150a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

TUnit.TestProject/DecimalArgumentTests.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,13 @@ public async Task MultipleDecimals(decimal a, decimal b, decimal c)
6969
await Assert.That(b).IsEqualTo(2.2m);
7070
await Assert.That(c).IsEqualTo(3.3m);
7171
}
72+
73+
[Test]
74+
[Arguments(0.5)]
75+
[Arguments(0.75)]
76+
[Arguments(1)]
77+
public void Test(decimal test)
78+
{
79+
return;
80+
}
7281
}

0 commit comments

Comments
 (0)