Skip to content

Commit

Permalink
Hide internal API
Browse files Browse the repository at this point in the history
  • Loading branch information
delatrie committed Mar 27, 2024
1 parent 6cbced8 commit 816b808
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Allure.NUnit/Core/AllureNUnitHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@

namespace Allure.NUnit.Core
{
public sealed class AllureNUnitHelper
sealed class AllureNUnitHelper
{
private readonly ITest _test;

public AllureNUnitHelper(ITest test)
internal AllureNUnitHelper(ITest test)
{
_test = test;
AllureLifecycle.AllureConfiguration.FailExceptions ??= new()
Expand Down Expand Up @@ -120,7 +120,7 @@ internal static TestResult CreateTestResult(ITest test)
internal static bool IsSelectedByTestPlan(TestResult testResult) =>
AllureLifecycle.TestPlan.IsSelected(testResult);

public static Status GetNUnitStatus()
internal static Status GetNUnitStatus()
{
var result = TestContext.CurrentContext.Result;
return result.Outcome.Status switch
Expand Down

0 comments on commit 816b808

Please sign in to comment.