1 instantiation of Wstest
Microsoft.AspNetCore.WebSockets.ConformanceTests (1)
Autobahn\Wstest.cs (1)
23return (location == null || !File.Exists(location)) ? null : new Wstest(location);
9 references to Wstest
Microsoft.AspNetCore.WebSockets.ConformanceTests (9)
Autobahn\AutobahnTester.cs (2)
43_logger.LogInformation("Using 'wstest' from: {WsTestPath}", Wstest.Default.Location); 45var exitCode = await Wstest.Default.ExecAsync("-m fuzzingclient -s " + specFile, cancellationToken, _loggerFactory.CreateLogger("wstest"));
Autobahn\Wstest.cs (4)
11private static readonly Lazy<Wstest> _instance = new Lazy<Wstest>(Create); 15public static Wstest Default => _instance.Value; 19private static Wstest Create()
AutobahnTests.cs (2)
30Assert.True(Wstest.Default != null, $"The 'wstest' executable (Autobahn WebSockets Test Suite) could not be found at '{Wstest.DefaultLocation}'. Run the Build Agent setup scripts to install it or see https://github.com/crossbario/autobahn-testsuite for instructions on manual installation.");
SkipIfWsTestNotPresentAttribute.cs (1)
12public bool IsMet => IsOnCi || Wstest.Default != null;