Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. using static WebDriverTestsCSharpSix.CSharpSix.StaticUsingSyntax.TimestampBuilder;
  2. using static WebDriverTestsCSharpSix.CSharpSix.StaticUsingSyntax.UniqueEmailGenerator;
  3. //....
  4. public User RegisterUser(string email = null, string password = null, string userName = null)
  5. {
  6. //..
  7. if (string.IsNullOrEmpty(email))
  8. {
  9. email = BuildUniqueEmailTimestamp();
  10. }
  11. //..
  12. return user;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement