private static void ConfigureScope(Scope scope)
 {
     scope.User = new User
     {
         Id       = SupportInformation.GetAnonymousIdentity(),
         Username = SupportInformation.GetSupportKey()
     };
 }
Beispiel #2
0
 public void GetAnonymousName_Returns_NotNullOrWhitespace()
 => SupportInformation.GetAnonymousIdentity()
 .Should()
 .NotBeNullOrWhiteSpace();