Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions docs/core/testing/mstest-analyzers/mstest0018.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,16 @@ The "data source" member referenced:
- should exist on the specified type (current class if no type is specified)
- should not have overloads
- should be of the same kind (method or property) as the `DataSourceType` property
- should be `public`
- should be `static`
- should not be generic
- should be parameterless
- should return `IEnumerable<object[]>`, `IEnumerable<Tuple<T,...>>` or `IEnumerable<ValueTuple<,...>>`
- should return `IEnumerable<object[]>`, `IEnumerable<Tuple<T,...>>`, or `IEnumerable<ValueTuple<,...>>`

The "display name" member referenced:

- should exist on the specified type (current class if no type is specified)
- should not have overloads
- should be a method
- should be `public`
- should be `static`
- should not be generic
- should return `string`
Expand Down