-
Notifications
You must be signed in to change notification settings - Fork 4
MiniBlogByWangJing #2
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
base: main
Are you sure you want to change the base?
Conversation
@@ -18,7 +18,7 @@ public TestBase(CustomWebApplicationFactory<Startup> factory) | |||
|
|||
protected CustomWebApplicationFactory<Startup> Factory { get; } | |||
|
|||
protected HttpClient GetClient(ArticleStore articleStore = null, UserStore userStore = null, IArticleRepository articleRepository = null) | |||
protected HttpClient GetClient(ArticleStore articleStore = null, UserStore userStore = null, IArticleRepository articleRepository = null, IUserRepository userRepository = null) | |||
{ | |||
return Factory.WithWebHostBuilder(builder => | |||
{ |
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.
should inject IUserRepository in testbase
@@ -13,6 +13,7 @@ public class ArticleService | |||
private readonly ArticleStore articleStore = null!; | |||
private readonly UserStore userStore = null!; | |||
private readonly IArticleRepository articleRepository = null!; | |||
private readonly IUserRepository userRepository = null!; | |||
|
|||
public ArticleService(ArticleStore articleStore, UserStore userStore, IArticleRepository articleRepository) | |||
{ |
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.
should inject IUserRepository userRepository in ArticleService
well:
to be improved:
|
|
||
namespace MiniBlog.Repositories | ||
{ | ||
public class UserRepository : IUserRepository |
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.
well: nice to also provide repository for user
@@ -13,6 +13,7 @@ public class ArticleService | |||
private readonly ArticleStore articleStore = null!; | |||
private readonly UserStore userStore = null!; | |||
private readonly IArticleRepository articleRepository = null!; | |||
private readonly IUserRepository userRepository = 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.
suggestion: need add to constructor if you want to inject
No description provided.