aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Tests/CommentRepository.Tests.cs
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-03-14 11:07:04 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-03-14 11:07:04 +0200
commit039909bd4d1a49773e6261c110cac4495f3a12fb (patch)
treee584a3662fe5dd3d10b9bf4afeff36b38f19c2ad /src/Data/DevHive.Data.Tests/CommentRepository.Tests.cs
parent8adb24d535c54de558cd1278d5e98632bed755e3 (diff)
downloadDevHive-039909bd4d1a49773e6261c110cac4495f3a12fb.tar
DevHive-039909bd4d1a49773e6261c110cac4495f3a12fb.tar.gz
DevHive-039909bd4d1a49773e6261c110cac4495f3a12fb.zip
Made properties into variables, fixed spacing and made protected members private, all in Data layer tests
Diffstat (limited to 'src/Data/DevHive.Data.Tests/CommentRepository.Tests.cs')
-rw-r--r--src/Data/DevHive.Data.Tests/CommentRepository.Tests.cs24
1 files changed, 11 insertions, 13 deletions
diff --git a/src/Data/DevHive.Data.Tests/CommentRepository.Tests.cs b/src/Data/DevHive.Data.Tests/CommentRepository.Tests.cs
index 1fd8ad0..1e5390b 100644
--- a/src/Data/DevHive.Data.Tests/CommentRepository.Tests.cs
+++ b/src/Data/DevHive.Data.Tests/CommentRepository.Tests.cs
@@ -11,10 +11,8 @@ namespace DevHive.Data.Tests
public class CommentRepositoryTests
{
private const string COMMENT_MESSAGE = "Comment message";
-
- protected DevHiveContext Context { get; set; }
-
- protected CommentRepository CommentRepository { get; set; }
+ private DevHiveContext _context;
+ private CommentRepository _commentRepository;
#region Setups
[SetUp]
@@ -23,15 +21,15 @@ namespace DevHive.Data.Tests
DbContextOptionsBuilder<DevHiveContext> optionsBuilder = new DbContextOptionsBuilder<DevHiveContext>()
.UseInMemoryDatabase(databaseName: "DevHive_Test_Database");
- this.Context = new DevHiveContext(optionsBuilder.Options);
+ this._context = new DevHiveContext(optionsBuilder.Options);
- this.CommentRepository = new CommentRepository(this.Context);
+ this._commentRepository = new CommentRepository(this._context);
}
[TearDown]
public void TearDown()
{
- _ = this.Context.Database.EnsureDeleted();
+ _ = this._context.Database.EnsureDeleted();
}
#endregion
@@ -41,7 +39,7 @@ namespace DevHive.Data.Tests
{
Comment comment = await this.AddEntity();
- Comment resultComment = await this.CommentRepository.GetCommentByIssuerAndTimeCreatedAsync(comment.Creator.Id, comment.TimeCreated);
+ Comment resultComment = await this._commentRepository.GetCommentByIssuerAndTimeCreatedAsync(comment.Creator.Id, comment.TimeCreated);
Assert.AreEqual(comment.Id, resultComment.Id, "GetCommentByIssuerAndTimeCreatedAsync does not return the corect comment when it exists");
}
@@ -51,7 +49,7 @@ namespace DevHive.Data.Tests
{
_ = await this.AddEntity();
- Comment resultComment = await this.CommentRepository.GetCommentByIssuerAndTimeCreatedAsync(Guid.Empty, DateTime.Now);
+ Comment resultComment = await this._commentRepository.GetCommentByIssuerAndTimeCreatedAsync(Guid.Empty, DateTime.Now);
Assert.IsNull(resultComment, "GetCommentByIssuerAndTimeCreatedAsync does not return null when the comment does not exist");
}
@@ -63,7 +61,7 @@ namespace DevHive.Data.Tests
{
Comment comment = await this.AddEntity();
- bool result = await this.CommentRepository.DoesCommentExist(comment.Id);
+ bool result = await this._commentRepository.DoesCommentExist(comment.Id);
Assert.IsTrue(result, "DoesCommentExist does not return true whenm the Comment exists");
}
@@ -71,7 +69,7 @@ namespace DevHive.Data.Tests
[Test]
public async Task DoesCommentExist_ReturnsFalse_WhenTheCommentDoesNotExist()
{
- bool result = await this.CommentRepository.DoesCommentExist(Guid.Empty);
+ bool result = await this._commentRepository.DoesCommentExist(Guid.Empty);
Assert.IsFalse(result, "DoesCommentExist does not return false whenm the Comment" +
" does not exist");
@@ -89,8 +87,8 @@ namespace DevHive.Data.Tests
TimeCreated = DateTime.Now
};
- _ = this.Context.Comments.Add(comment);
- _ = await this.Context.SaveChangesAsync();
+ _ = this._context.Comments.Add(comment);
+ _ = await this._context.SaveChangesAsync();
return comment;
}