diff options
author | crupest <crupest@outlook.com> | 2021-04-23 17:28:18 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-04-23 17:37:37 +0800 |
commit | 5b9f8cfb458bdefaa82c326e03ded7a678034346 (patch) | |
tree | 803b5aba53bdffd5dc72f8e186a79b7abf2a239e /BackEnd/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs | |
parent | ffdc747c5b2cefff117f4da049386ba9f30bd792 (diff) | |
download | timeline-5b9f8cfb458bdefaa82c326e03ded7a678034346.tar.gz timeline-5b9f8cfb458bdefaa82c326e03ded7a678034346.tar.bz2 timeline-5b9f8cfb458bdefaa82c326e03ded7a678034346.zip |
refactor: Refactor a lot.
Diffstat (limited to 'BackEnd/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs')
-rw-r--r-- | BackEnd/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/BackEnd/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs b/BackEnd/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs index b700ada2..161e5d98 100644 --- a/BackEnd/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs +++ b/BackEnd/Timeline.Tests/IntegratedTests/IntegratedTestBase.cs @@ -64,6 +64,14 @@ namespace Timeline.Tests.IntegratedTests }
var userService = scope.ServiceProvider.GetRequiredService<IUserService>();
+
+ await userService.ModifyUser(await userService.GetUserIdByUsername("administrator"), new ModifyUserParams
+ {
+ Username = "admin",
+ Password = "adminpw",
+ Nickname = "administrator"
+ });
+
foreach (var user in users)
{
var (username, password, nickname) = user;
|