We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The default scan factory is not registered using a ScanFactory interface as an injection token into the IoC container.
[Fact] public void AddSecTesterScan_ReturnsScanFactory() { // arrange _services.AddSingleton(_config); _services.AddSecTesterBus(); // act _services.AddSecTesterScan(); // assert using var provider = _services.BuildServiceProvider(); var result = provider.GetRequiredService<ScanFactory>(); result.Should().BeOfType<ScanFactory>(); }
The text was updated successfully, but these errors were encountered:
fix(scan): add ability to retrieve ScanFactory from IoC
ScanFactory
9e2c35c
closes #100
e42f144
9e22929
fix(scan): register ScanFactory in IoC container (#103)
c948d49
ostridm
Successfully merging a pull request may close this issue.
The default scan factory is not registered using a ScanFactory interface as an injection token into the IoC container.
The text was updated successfully, but these errors were encountered: