public void TestAuthenticate()
 {
     AuthenticationDetails details = new AuthenticationDetails(testUsername, testPassword.ToSecureString());
     AuthenticationToken token = fileSystemSecurityService.Authenticate(details);
     Assert.IsNotNull(token);
 }
 public AuthenticationToken Authenticate(AuthenticationDetails authenticationDetails)
 {
     throw new NotImplementedException();
 }