You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 17, 2026. It is now read-only.
Expanded the testing capabilities by creating HostApplicationTestBase and WebHostApplicationTestBase. These bases should make it easier to write and encapsulate common setup and teardown operations on tests involving WebHost and Host. Additionally, revised the logging system to include a "SimpleTestLogger" that operates without dependencies on the existing PulseFlow system. Made adjustments to related classes accordingly.
publicIServiceProviderServices=>(_initialized?_host?.Services:thrownewInvalidOperationException("The host has not been initialized yet."))??thrownewInvalidOperationException("!!!");
publicIServiceProviderServices=>(_initialized?_host?.Services:thrownewInvalidOperationException("The host has not been initialized yet."))??thrownewInvalidOperationException("!!!");
protectedHttpClientTestClient=>(_initialized?_host?.CreateTestClient():thrownewInvalidOperationException("The host has not been initialized yet."))??thrownewInvalidOperationException("!!!");
30
+
protectedIEnumerable<string>GetServerEndpoints()=>(_initialized?_host?.GetServerEndpoints():thrownewInvalidOperationException("The host has not been initialized yet."))??thrownewInvalidOperationException("!!!");
0 commit comments