Skip to content

Commit

Permalink
Make internal API hidden from public
Browse files Browse the repository at this point in the history
  • Loading branch information
delatrie committed Mar 27, 2024
1 parent 2cce2c9 commit 03a1594
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Allure.XUnit/AllureMessageSink.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace Allure.Xunit
{
public class AllureMessageSink :
class AllureMessageSink :
DefaultRunnerReporterWithTypesMessageHandler
{
static AllureTestPlan TestPlan
Expand Down Expand Up @@ -224,6 +224,6 @@ void LogUnreportedTheoryArgs(string testName)
static bool IsStaticTestMethod(ITestMethodMessage message) =>
message.TestMethod.Method.IsStatic;

public static AllureMessageSink? CurrentSink { get; private set; }
internal static AllureMessageSink? CurrentSink { get; private set; }
}
}
4 changes: 2 additions & 2 deletions Allure.XUnit/AllureXunitFacade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

namespace Allure.Xunit
{
public static class AllureXunitFacade
static class AllureXunitFacade
{
public static IMessageSink CreateAllureXunitMessageHandler(
internal static IMessageSink CreateAllureXunitMessageHandler(
IRunnerLogger logger
)
{
Expand Down
2 changes: 1 addition & 1 deletion Allure.XUnit/AllureXunitHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace Allure.Xunit
{
public static class AllureXunitHelper
static class AllureXunitHelper
{
internal const string NS_OBSOLETE_MSG =
"The Allure.XUnit namespace is deprecated. Please, use Allure.Xunit instead";
Expand Down

0 comments on commit 03a1594

Please sign in to comment.