We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57996ce commit d8fd55eCopy full SHA for d8fd55e
1 file changed
test/UnitTestTcpSocket/SocketLoggingTest.cs
@@ -0,0 +1,16 @@
1
+// Copyright (c) BootstrapBlazor & Argo Zhang (argo@live.ca). All rights reserved.
2
+// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3
+// Website: https://www.blazor.zone or https://argozhang.github.io/
4
+
5
+using BootstrapBlazor.Socket.Logging;
6
7
+namespace UnitTestTcpSocket;
8
9
+public class SocketLoggingTest
10
+{
11
+ [Fact]
12
+ public void Logger_Ok()
13
+ {
14
+ SocketLogging.LogError(new Exception());
15
+ }
16
+}
0 commit comments