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
{{ message }}
This repository was archived by the owner on Apr 8, 2019. It is now read-only.
/// Called to test a C# code fix when applied on the input source as a string.
99
+
/// </summary>
100
+
/// <param name="oldSource">A class in the form of a string before the code fix was applied to it.</param>
101
+
/// <param name="verifyFixedProjectAsync">A validation function to verify the results of the code fix.</param>
102
+
/// <param name="oldFileName">The name of the file in the project before the code fix was applied.</param>
103
+
/// <param name="codeFixIndex">Index determining which code fix to apply if there are multiple.</param>
104
+
/// <param name="allowNewCompilerDiagnostics">A value indicating whether or not the test will fail if the code fix introduces other warnings after being applied.</param>
105
+
/// <param name="numberOfIncrementalIterations">The number of iterations the incremental fixer will be called.
106
+
/// If this value is less than 0, the negated value is treated as an upper limit as opposed to an exact
107
+
/// value.</param>
108
+
/// <param name="numberOfFixAllIterations">The number of iterations the Fix All fixer will be called. If this
109
+
/// value is less than 0, the negated value is treated as an upper limit as opposed to an exact value.</param>
110
+
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that the task will observe.</param>
111
+
/// <returns>A <see cref="Task"/> representing the asynchronous operation.</returns>
/// Called to test a C# code fix when applied on the input source as a string.
97
120
/// </summary>
@@ -156,6 +179,76 @@ public bool UseTabs
156
179
}
157
180
}
158
181
182
+
/// <summary>
183
+
/// Called to test a C# code fix when applied on the input source as a string.
184
+
/// </summary>
185
+
/// <param name="oldSources">An array of sources in the form of strings before the code fix was applied to them.</param>
186
+
/// <param name="verifyFixedProjectAsync">A validation function to verify the results of the code fix.</param>
187
+
/// <param name="oldFileNames">An array of file names in the project before the code fix was applied.</param>
188
+
/// <param name="codeFixIndex">Index determining which code fix to apply if there are multiple.</param>
189
+
/// <param name="allowNewCompilerDiagnostics">A value indicating whether or not the test will fail if the code fix introduces other warnings after being applied.</param>
190
+
/// <param name="numberOfIncrementalIterations">The number of iterations the incremental fixer will be called.
191
+
/// If this value is less than 0, the negated value is treated as an upper limit as opposed to an exact
192
+
/// value.</param>
193
+
/// <param name="numberOfFixAllIterations">The number of iterations the Fix All fixer will be called. If this
194
+
/// value is less than 0, the negated value is treated as an upper limit as opposed to an exact value.</param>
195
+
/// <param name="cancellationToken">The <see cref="CancellationToken"/> that the task will observe.</param>
196
+
/// <returns>A <see cref="Task"/> representing the asynchronous operation.</returns>
0 commit comments