aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Tests/DevHive.Data.Tests/UserRepositoryTests.cs
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-02-05 17:57:36 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-02-05 17:57:36 +0200
commit54c4f6eb173bab2fd711f3dad144eb4f06422911 (patch)
treeacc977ed286ac77661975171b1b74f20a530156e /src/DevHive.Tests/DevHive.Data.Tests/UserRepositoryTests.cs
parent3cd6c8732f421dfa31cca7e7d624589f1ebdd28d (diff)
downloadDevHive-54c4f6eb173bab2fd711f3dad144eb4f06422911.tar
DevHive-54c4f6eb173bab2fd711f3dad144eb4f06422911.tar.gz
DevHive-54c4f6eb173bab2fd711f3dad144eb4f06422911.zip
Updated feed and post repository tests; commented out tests that can't be done yet
Diffstat (limited to 'src/DevHive.Tests/DevHive.Data.Tests/UserRepositoryTests.cs')
-rw-r--r--src/DevHive.Tests/DevHive.Data.Tests/UserRepositoryTests.cs28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/DevHive.Tests/DevHive.Data.Tests/UserRepositoryTests.cs b/src/DevHive.Tests/DevHive.Data.Tests/UserRepositoryTests.cs
index aaa189a..9267053 100644
--- a/src/DevHive.Tests/DevHive.Data.Tests/UserRepositoryTests.cs
+++ b/src/DevHive.Tests/DevHive.Data.Tests/UserRepositoryTests.cs
@@ -218,20 +218,20 @@ namespace DevHive.Data.Tests
// Assert.IsTrue(result, "DoesUserHaveThisFriendAsync does not return true when user has the given friend");
//}
- [Test]
- public async Task DoesUserHaveThisFriendAsync_ReturnsFalse_WhenUserDoesNotHaveTheGivenFriend()
- {
- User dummyUser = this.CreateDummyUser();
- User anotherDummyUser = this.CreateAnotherDummyUser();
-
- this._context.Users.Add(dummyUser);
- this._context.Users.Add(anotherDummyUser);
- await this._context.SaveChangesAsync();
-
- bool result = await this._userRepository.DoesUserHaveThisFriendAsync(dummyUser.Id, anotherDummyUser.Id);
-
- Assert.IsFalse(result, "DoesUserHaveThisFriendAsync does not return false when user des not have the given friend");
- }
+ // [Test]
+ // public async Task DoesUserHaveThisFriendAsync_ReturnsFalse_WhenUserDoesNotHaveTheGivenFriend()
+ // {
+ // User dummyUser = this.CreateDummyUser();
+ // User anotherDummyUser = this.CreateAnotherDummyUser();
+ //
+ // this._context.Users.Add(dummyUser);
+ // this._context.Users.Add(anotherDummyUser);
+ // await this._context.SaveChangesAsync();
+ //
+ // bool result = await this._userRepository.DoesUserHaveThisFriendAsync(dummyUser.Id, anotherDummyUser.Id);
+ //
+ // Assert.IsFalse(result, "DoesUserHaveThisFriendAsync does not return false when user des not have the given friend");
+ // }
#endregion
#region DoesUserHaveThisUsername