We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e810a2a commit bc4be8aCopy full SHA for bc4be8a
2 files changed
.github/workflows/build.yml
@@ -51,4 +51,4 @@ jobs:
51
if: runner.os != 'Linux'
52
run: |
53
cd test/SuperSocket.Tests
54
- dotnet test --filter FullyQualifiedName\!~QuicHostConfigurator
+ dotnet test --filter FullyQualifiedName\!~TestQuicSupport
test/SuperSocket.Tests/QuicTest.cs
@@ -0,0 +1,17 @@
1
+using System;
2
+using System.Net.Quic;
3
+using Xunit;
4
+
5
+namespace SuperSocket.Tests
6
+{
7
+ public class QuicTest
8
+ {
9
+ [Fact]
10
+ public void TestQuicSupport()
11
12
+#pragma warning disable CA2252,CA1416
13
+ Assert.True(QuicListener.IsSupported, "QUIC is not supported.");
14
+#pragma warning restore CA2252,CA1416
15
+ }
16
17
+}
0 commit comments