public void IsValidTest1()
 {
     var target = new MockAccountProvider();
     bool expected = true;
     bool actual;
     actual = target.IsValid("1", "123");
     Assert.AreEqual(expected, actual);
 }
 public void IsValidTest()
 {
     var target = new MockAccountProvider();
     string authenticationId = string.Empty;
     bool expected = true;
     bool actual;
     actual = target.IsValid(authenticationId);
     Assert.AreEqual(expected, actual);
 }