-
Notifications
You must be signed in to change notification settings - Fork 464
New issue
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
Adding public API test coverage for Aspire.MongoDB.Driver #5171
Adding public API test coverage for Aspire.MongoDB.Driver #5171
Conversation
…aspire-mongodb-driver
tests/Aspire.MongoDB.Driver.Tests/MongoDBDriverPublicApiTests.cs
Outdated
Show resolved
Hide resolved
public void AddMongoDBClientShouldThrowWhenNameIsNull() | ||
{ | ||
var builder = Host.CreateEmptyApplicationBuilder(null); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And here
public void AddMongoDBClientShouldThrowWhenNameIsEmpty() | ||
{ | ||
var builder = Host.CreateEmptyApplicationBuilder(null); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And here
public void AddKeyedMongoDBClientShouldThrowWhenBuilderIsNull() | ||
{ | ||
IHostApplicationBuilder builder = null!; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And here
public void AddKeyedMongoDBClientShouldThrowWhenNameIsNull() | ||
{ | ||
var builder = Host.CreateEmptyApplicationBuilder(null); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And here
public void AddKeyedMongoDBClientShouldThrowWhenNameIsEmpty() | ||
{ | ||
var builder = Host.CreateEmptyApplicationBuilder(null); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And here
Contributes to #5047 and #2649
Microsoft Reviewers: Open in CodeFlow