Skip to content

Commit

Permalink
Tests updated
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-merkle committed Jan 9, 2024
1 parent 0f605cd commit 61b3539
Show file tree
Hide file tree
Showing 13 changed files with 615 additions and 132 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = Serilog.Sinks.SlackWebHook
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 2.1.1
PROJECT_NUMBER = 2.1.3

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Diagnostics.CodeAnalysis;
using System.Threading;
using Serilog;
using Serilog.Core;
Expand All @@ -16,6 +17,7 @@ public static class SlackSinkExample
/// </summary>
/// <exception cref="ArgumentException"></exception>
/// <exception cref="Exception"></exception>
[ExcludeFromCodeCoverage]
public static void Main()
{
string? slackChannel = null;
Expand Down
2 changes: 2 additions & 0 deletions src/jjm.one.Serilog.Sinks.SlackWebHook.Tests/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
global using FluentAssertions;
global using Xunit;
Loading

0 comments on commit 61b3539

Please sign in to comment.