tests: make test classes public

This commit is contained in:
Stevan Freeborn
2025-08-20 15:00:32 -05:00
parent 9739fa0163
commit 6e890b2e4e
4 changed files with 4 additions and 4 deletions
@@ -1,6 +1,6 @@
namespace StreamShorts.Console.Tests.Unit.Hosting;
internal class TypeRegistrarTests
public class TypeRegistrarTests
{
[Fact]
public void Constructor_WhenCalled_ItShouldNotThrowShould()
@@ -1,6 +1,6 @@
namespace StreamShorts.Console.Tests.Unit.Hosting;
internal class TypeResolverTests
public class TypeResolverTests
{
[Fact]
public void Constructor_WhenCalledWithNullHost_ItShouldThrowArgumentNullException()
@@ -1,6 +1,6 @@
namespace StreamShorts.Library.Tests.Integration.Media.Audio;
internal class AudioExtractorTests
public class AudioExtractorTests
{
private readonly AudioExtractor _sut = new();
@@ -4,7 +4,7 @@ using StreamShorts.Library.Media;
namespace StreamShorts.Library.Tests.Unit.Media.Audio;
internal class AudioExtractorTests
public class AudioExtractorTests
{
private readonly Mock<IVideoService> _mockFfmpegService = new();
private readonly AudioExtractor _sut;