Merge pull request #2 from StevanFreeborn/stevanfreeborn/fix/build-errors

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