5 references to StartServer
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (1)
RedisServerFixture.cs (1)
65return await InProcessTestServer<TStartup>.StartServer(_loggerFactory);
Microsoft.AspNetCore.SignalR.Tests (3)
NativeAotTests.cs (3)
29await using (var server = await InProcessTestServer<Startup<AsyncMethodHub>>.StartServer(loggerFactory)) 148var e = await Assert.ThrowsAsync<InvalidOperationException>(() => InProcessTestServer<Startup<ChannelValueTypeMethodHub>>.StartServer(NullLoggerFactory.Instance)); 154var e = await Assert.ThrowsAsync<InvalidOperationException>(() => InProcessTestServer<Startup<EnumerableValueTypeMethodHub>>.StartServer(NullLoggerFactory.Instance));
Microsoft.AspNetCore.SignalR.Tests.Utils (1)
src\Shared\SignalR\FunctionalTestBase.cs (1)
43return InProcessTestServer<T>.StartServer(LoggerFactory, configureKestrelServerOptions, disposable);