Beispiel #1
0
 public CreateNewUser(OsdrTestHarness fixture, ITestOutputHelper output) : base(fixture, output)
 {
     NewUserId = NewId.NextGuid();
     Harness.CreateUser(NewUserId, "John Doe", "John", "Doe", "john", "*****@*****.**", null, JohnId).Wait();
 }
Beispiel #2
0
        private async Task Seed(Guid userId, string displayName, string firstName, string lastName, string loginName, string email, string avatar)
        {
//            await Harness.CreateUser(User1Id, "John Doe", "John", "Doe", "john", "*****@*****.**", null, User1Id);
            await Harness.CreateUser(userId, displayName, firstName, lastName, loginName, email, avatar, userId);
        }