Merge pull request #2 from StevanFreeborn/stevanfreeborn/fix/build-errors
tests: make test classes public
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user