1 instantiation of Wstest
Microsoft.AspNetCore.WebSockets.ConformanceTests (1)
Autobahn\Wstest.cs (1)
23
return (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);
45
var exitCode = await
Wstest
.Default.ExecAsync("-m fuzzingclient -s " + specFile, cancellationToken, _loggerFactory.CreateLogger("wstest"));
Autobahn\Wstest.cs (4)
11
private static readonly Lazy<
Wstest
> _instance = new Lazy<
Wstest
>(Create);
15
public static
Wstest
Default => _instance.Value;
19
private static
Wstest
Create()
AutobahnTests.cs (2)
30
Assert.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)
12
public bool IsMet => IsOnCi ||
Wstest
.Default != null;