Skip to content

refactor: Made additional types internal #1736

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/bunit/Diffing/BlazorDiffingHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace Bunit.Diffing;
/// <summary>
/// Blazor Diffing Helpers.
/// </summary>
public static class BlazorDiffingHelpers
internal static class BlazorDiffingHelpers
{
/// <summary>
/// Represents a diffing filter that removes all special Blazor attributes added by the /<see cref="Htmlizer"/>.
Expand Down
2 changes: 1 addition & 1 deletion src/bunit/Diffing/HtmlComparer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Bunit.Diffing;
/// <summary>
/// Represents a test HTML comparer, that is configured to work with markup generated by the <see cref="BunitRenderer"/> and <see cref="Htmlizer"/> classes.
/// </summary>
public sealed class HtmlComparer
internal sealed class HtmlComparer
{
private readonly HtmlDiffer differenceEngine;

Expand Down
2 changes: 1 addition & 1 deletion src/bunit/Extensions/BlazorExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace Bunit.Extensions;
/// <summary>
/// Extensions for Blazor types.
/// </summary>
public static class BlazorExtensions
internal static class BlazorExtensions
{
/// <summary>
/// Creates a <see cref="RenderFragment"/> that will render the <paramref name="markup"/>.
Expand Down
2 changes: 1 addition & 1 deletion src/bunit/Extensions/BunitServiceProviderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Bunit.Extensions;
/// <summary>
/// Helper methods for correctly registering test dependencies.
/// </summary>
public static class BunitServiceProviderExtensions
internal static class BunitServiceProviderExtensions
{
/// <summary>
/// Registers the default services required by the web <see cref="BunitContext"/>.
Expand Down
2 changes: 1 addition & 1 deletion src/bunit/Rendering/BunitHtmlParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Bunit.Rendering;
/// A AngleSharp based HTML Parse that can parse markup strings
/// into a <see cref="INodeList"/>.
/// </summary>
public sealed class BunitHtmlParser : IDisposable
internal sealed class BunitHtmlParser : IDisposable
{
private const string TbodySubElements = "TR";
private const string ColgroupSubElement = "COL";
Expand Down