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 | 6e067a28d8527726a2a17045bef0f0e3d3430ed5 (patch) | |
tree | 967ed4c84981d6b626a3370c726d35d1c3e2c2b4 /BackEnd/Timeline.Tests/IntegratedTests | |
parent | 6acef36dc717834605eda2af9e1738dac8fa2f6d (diff) | |
download | timeline-6e067a28d8527726a2a17045bef0f0e3d3430ed5.tar.gz timeline-6e067a28d8527726a2a17045bef0f0e3d3430ed5.tar.bz2 timeline-6e067a28d8527726a2a17045bef0f0e3d3430ed5.zip |
refactor: Refactor a lot.
Diffstat (limited to 'BackEnd/Timeline.Tests/IntegratedTests')
-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;
|