chore: stub out tests

This commit is contained in:
Stevan Freeborn
2025-06-02 00:00:28 -05:00
parent a9fe97b411
commit 7f9404dff3
2 changed files with 7 additions and 1 deletions
@@ -9,7 +9,7 @@ internal static class NotificationHandler
[FromServices] IDiscordRestClient discordRestClient, [FromServices] IDiscordRestClient discordRestClient,
[FromServices] IOptionsMonitor<DiscordNotificationOptions> discordNotificationOptions, [FromServices] IOptionsMonitor<DiscordNotificationOptions> discordNotificationOptions,
[FromServices] ILastPostedStreamStore lastPostedStream, [FromServices] ILastPostedStreamStore lastPostedStream,
CancellationToken cancellationToken CancellationToken cancellationToken = default
) )
{ {
using StreamReader stream = new(context.Request.Body); using StreamReader stream = new(context.Request.Body);
@@ -0,0 +1,6 @@
namespace StevesBot.Webhook.Tests.Unit;
public class NotificationHandlerTests
{
}