Skip to content

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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

jingwang315
Copy link

No description provided.

@@ -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 =>
{
Copy link

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)
{
Copy link

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

@sjin9
Copy link

sjin9 commented Nov 8, 2023

well:

  • good commit message
  • splitted article into 3 layers
  • registered all dependencies in DI container

to be improved:

  • smaller commit step
  • not all test passed


namespace MiniBlog.Repositories
{
public class UserRepository : IUserRepository

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!;

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants