-
Notifications
You must be signed in to change notification settings - Fork 4
homework pengyu #6
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
WangKe
To Improve:
|
|
||
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 add UserRepository
@@ -12,39 +12,41 @@ public class ArticleService | |||
{ | |||
private readonly ArticleStore articleStore = 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: remove unused articleStore & userStore
var mockArticle = new Mock<IArticleRepository>(); | ||
mockArticle.Setup(repo => repo.GetArticles()).Returns(Task.FromResult(new List<Article> | ||
{ | ||
new Article("pengyu", "Let's smile to", "C#"), |
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.
😂
// given | ||
var newArticle = new Article("Jerry", "Let's code", "c#"); | ||
var newUser = new User(newArticle.UserName); | ||
var mockArticle = new Mock<IArticleRepository>(); |
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: rename to mockArticleRepository or mockArticleRepo
No description provided.