Interface ITestCaseData
The ITestCaseData interface is implemented by a class that is able to return complete test cases for use by a parameterized test method.
Namespace: NUnit.Framework.Interfaces
Assembly: nunit.framework.dll
Syntax
public interface ITestCaseData : ITestData
Properties
View SourceExpectedResult
Gets the expected result of the test case
Declaration
object? ExpectedResult { get; }
Property Value
Type | Description |
---|---|
object |
HasExpectedResult
Returns true if an expected result has been set
Declaration
bool HasExpectedResult { get; }
Property Value
Type | Description |
---|---|
bool |