You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicstaticIEnumerable<object[]>MyProperty=>newList<object[]>();publicstaticIEnumerable<object[]>MyMethod()=>newList<object[]>();publicstaticIEnumerable<object[]>MyField;[TestMethod][DynamicData(nameof(MyProperty),DynamicDataSourceType.Property)]// Good usage. No diagnostic.[DynamicData(nameof(MyMethod),DynamicDataSourceType.Property)]// Bad usage. We already produce a diagnostic.[DynamicData(nameof(MyField),DynamicDataSourceType.Property)]// Bad usage. We are missing a diagnosticpublicvoidTestMethod(object[]x){}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: