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);
Action を返す TestCaseBuilder 型を追加する。
Usage 1
Usage 2