Skip to content

Commit

Permalink
Organize TwitchDownloaderCore.Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ScrubN committed Jan 10, 2024
1 parent 3fa0bd1 commit eca6c4c
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public static void CorrectlyFindsStreamOfQualityFromM3U8ResponseWithoutFramerate
[InlineData("Source", "1080p60")]
[InlineData("", "1080p60")]
[InlineData(null, "1080p60")]
public static void ReturnsHighestQualityWhenDesiredQualityNotFoundForOldM3U8Response(string qualityString, string expectedPath)
public static void ReturnsHighestQualityWhenDesiredQualityNotFoundForOldM3U8Response(string? qualityString, string expectedPath)
{
var m3u8 = new M3U8(new M3U8.Metadata(), new[]
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using TwitchDownloaderCore.Extensions;

namespace TwitchDownloaderCore.Tests
namespace TwitchDownloaderCore.Tests.ExtensionTests
{
public class ReadOnlySpanCountTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using TwitchDownloaderCore.Extensions;

namespace TwitchDownloaderCore.Tests
namespace TwitchDownloaderCore.Tests.ExtensionTests
{
// ReSharper disable StringLiteralTypo
public class ReadOnlySpanTryReplaceNonEscapedTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using TwitchDownloaderCore.Extensions;

namespace TwitchDownloaderCore.Tests
namespace TwitchDownloaderCore.Tests.ExtensionTests
{
public class ReadOnlySpanUnEscapedIndexOfAnyTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using TwitchDownloaderCore.Extensions;

namespace TwitchDownloaderCore.Tests
namespace TwitchDownloaderCore.Tests.ExtensionTests
{
public class ReadOnlySpanUnEscapedIndexOfTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using TwitchDownloaderCore.Extensions;

namespace TwitchDownloaderCore.Tests
namespace TwitchDownloaderCore.Tests.ExtensionTests
{
// ReSharper disable StringLiteralTypo
public class StringReplaceAnyTests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using TwitchDownloaderCore.Extensions;
using TwitchDownloaderCore.Tools;

namespace TwitchDownloaderCore.Tests
namespace TwitchDownloaderCore.Tests.ToolTests
{
public class FilenameServiceTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using TwitchDownloaderCore.Tools;
using TwitchDownloaderCore.TwitchObjects;

namespace TwitchDownloaderCore.Tests
namespace TwitchDownloaderCore.Tests.ToolTests
{
// ReSharper disable StringLiteralTypo
public class HighlightIconsTests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Text;
using TwitchDownloaderCore.Tools;

namespace TwitchDownloaderCore.Tests
namespace TwitchDownloaderCore.Tests.ToolTests
{
// ReSharper disable StringLiteralTypo
public class M3U8Tests
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using TwitchDownloaderCore.Tools;

namespace TwitchDownloaderCore.Tests
namespace TwitchDownloaderCore.Tests.ToolTests
{
// Important notes: When a TimeSpan less than 24 hours in length is passed to TimeSpanHFormat.Format, TimeSpan.ToString is used instead.
// ReSharper disable StringLiteralTypo
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using TwitchDownloaderCore.Tools;

namespace TwitchDownloaderCore.Tests
namespace TwitchDownloaderCore.Tests.ToolTests
{
public class UrlTimeCodeTests
{
Expand Down

0 comments on commit eca6c4c

Please sign in to comment.