public AuthenticateController(
     IIdentityServerInteractionService interaction,
     IHostingEnvironment env,
     TestUserStore users = null)
 {
     _users       = users ?? new TestUserStore(TestUsers.GetTestUsers());
     _interaction = interaction;
     _env         = env;
 }