Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Amaury Levé <[email protected]>
  • Loading branch information
Haplois and Evangelink committed Apr 22, 2022
1 parent cb1d622 commit 6fe4b68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/TestFramework/Extension.Shared/TestContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ public abstract class TestContext
public virtual UnitTestOutcome CurrentTestOutcome => UnitTestOutcome.Unknown;

/// <summary>
/// Adds a file name to the list in TestResult.ResultFileNames
/// Adds a file name to the list in TestResult.ResultFileNames.
/// </summary>
/// <param name="fileName">
/// The file Name.
/// The file name.
/// </param>
public abstract void AddResultFile(string fileName);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ public TestMethodAttribute()
/// Initializes a new instance of the <see cref="TestMethodAttribute"/> class.
/// </summary>
/// <param name="displayName">
/// Display Name for the test
/// Display name for the test.
/// </param>
public TestMethodAttribute(string displayName)
{
this.DisplayName = displayName;
}

/// <summary>
/// Gets display Name for the test
/// Gets display name for the test.
/// </summary>
public string DisplayName { get; }

Expand Down

0 comments on commit 6fe4b68

Please sign in to comment.