Persimmon


TestCaseType<'T>

Namespace: Persimmon

This DU represents the type of the test case. If the test has some return values, then the type of the test case is HasValueTest. If not, then it is NoValueTest.

Union Cases

Union CaseDescription
HasValueTest(TestCase<'T>)
Signature: TestCase<'T>

The TestCase has some return values. It means that the TestCase is not TestCase.

NoValueTest(TestCase<'T>)
Signature: TestCase<'T>

The TestCase does not have any return values. It means that the TestCase is TestCase.

Fork me on GitHub