Skip to content

Commit eb53fac

Browse files
HaploisEvangelink
andauthored
Apply suggestions from code review
Co-authored-by: Amaury Levé <[email protected]>
1 parent cb1d622 commit eb53fac

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/TestFramework/Extension.Shared/TestContext.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ public abstract class TestContext
5858
public virtual UnitTestOutcome CurrentTestOutcome => UnitTestOutcome.Unknown;
5959

6060
/// <summary>
61-
/// Adds a file name to the list in TestResult.ResultFileNames
61+
/// Adds a file name to the list in <see cref="TestResult.ResultFileNames" />.
6262
/// </summary>
6363
/// <param name="fileName">
64-
/// The file Name.
64+
/// The file name.
6565
/// </param>
6666
public abstract void AddResultFile(string fileName);
6767

src/TestFramework/MSTest.Core/Attributes/TestMethod/TestMethodAttribute.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ public TestMethodAttribute()
2323
/// Initializes a new instance of the <see cref="TestMethodAttribute"/> class.
2424
/// </summary>
2525
/// <param name="displayName">
26-
/// Display Name for the test
26+
/// Display name for the test.
2727
/// </param>
2828
public TestMethodAttribute(string displayName)
2929
{
3030
this.DisplayName = displayName;
3131
}
3232

3333
/// <summary>
34-
/// Gets display Name for the test
34+
/// Gets display name for the test.
3535
/// </summary>
3636
public string DisplayName { get; }
3737

0 commit comments

Comments
 (0)