From e2c3d4ad522a73571658825c8b5242a2ffc97eb4 Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 10 Sep 2025 14:21:14 +0200 Subject: [PATCH] init DocSignedNotificationTest --- .../DocSignedNotificationTest.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 EnvelopeGenerator.Tests.Application/DocSignedNotificationTest.cs diff --git a/EnvelopeGenerator.Tests.Application/DocSignedNotificationTest.cs b/EnvelopeGenerator.Tests.Application/DocSignedNotificationTest.cs new file mode 100644 index 00000000..076c8922 --- /dev/null +++ b/EnvelopeGenerator.Tests.Application/DocSignedNotificationTest.cs @@ -0,0 +1,15 @@ +namespace EnvelopeGenerator.Tests.Application; + +public class DocSignedNotificationTest +{ + [SetUp] + public void Setup() + { + } + + [Test] + public void Test1() + { + Assert.Pass(); + } +}