Skip to content

Commit

Permalink
Fill out XML comments on OrderAttribute
Browse files Browse the repository at this point in the history
  • Loading branch information
RenderMichael authored and manfred-brands committed May 3, 2024
1 parent db4a99f commit 4eaab2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NUnitFramework/framework/Attributes/OrderAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ namespace NUnit.Framework
public class OrderAttribute : NUnitAttribute, IApplyToTest, IApplyToTestSuite
{
/// <summary>
/// Defines the order that the test will run in
/// The order that the test will run in
/// </summary>
public readonly int Order;

/// <summary>
/// Defines the order that the test will run in
/// </summary>
/// <param name="order"></param>
/// <param name="order">The order that the test will run in</param>
public OrderAttribute(int order)
{
Order = order;
Expand Down

0 comments on commit 4eaab2e

Please sign in to comment.