-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Action を返す TestCaseBuilder 型を追加する。
Usage 1
Action TestCase(int testNumber, int val, string expected, Type expectedExceptionType = null) =>
new TestCaseBuilder($"No.{testNumber}")
.Run(() => val.ToString())
.Verify(expected, expectedExceptionType);Usage 2
new TestCaseBuilder()
.Run(() => val.ToString())
.Verify(expected, expectedExceptionType)
.Parallel(10);Metadata
Metadata
Assignees
Labels
No labels