Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: microsoft/testfx
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 568a700b32034f2ba1a79ab4ddb6147030a9b908
Choose a base ref
..
head repository: microsoft/testfx
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 73d36097c0fd7f5197c7fab6783cd592139c9c37
Choose a head ref
Showing with 5 additions and 0 deletions.
  1. +5 −0 src/TestFramework/TestFramework/TestDataRow.cs
5 changes: 5 additions & 0 deletions src/TestFramework/TestFramework/TestDataRow.cs
Original file line number Diff line number Diff line change
@@ -5,6 +5,11 @@

namespace Microsoft.VisualStudio.TestTools.UnitTesting;

/// <summary>
/// When this type is returned from <see cref="ITestDataSource.GetData(MethodInfo)" /> (for example, through <see cref="DynamicDataAttribute" />), it
/// determines information related to the specific test case.
/// </summary>
/// <typeparam name="T">The type parameter corresponding to the type of the value held by this type. It can be a tuple for test methods with more than one parameter.</typeparam>
[DataContract]
public sealed class TestDataRow<T>
{