public void GetNumberOfInactiveProfilesThrowsNotImplementedException(FakeProfileProvider sut, ProfileAuthenticationOption option)
 {
   Assert.Throws<NotImplementedException>(() => sut.GetNumberOfInactiveProfiles(option, DateTime.MinValue));
 }
 public void SetPropertyValuesThrowsNotImplementedException(FakeProfileProvider sut, SettingsContext context, SettingsPropertyValueCollection collection)
 {
   Assert.Throws<NotImplementedException>(() => sut.SetPropertyValues(context, collection));
 }
 public void GetAllProfilesThrowsNotImplementedException(FakeProfileProvider sut, ProfileAuthenticationOption option)
 {
   int totalNumber;
   Assert.Throws<NotImplementedException>(() => sut.GetAllProfiles(option, 0, 0, out totalNumber));
 }
 public void FindProfilesByUserNameThrowsNotImplementedException(FakeProfileProvider sut, ProfileAuthenticationOption option)
 {
   int totalNumber;
   Assert.Throws<NotImplementedException>(() => sut.FindProfilesByUserName(option, null, 0, 0, out totalNumber));
 }
 public void DeleteProfilesByUserNamesThrowsNotImplementedException(FakeProfileProvider sut, string[] userNames)
 {
   Assert.Throws<NotImplementedException>(() => sut.DeleteProfiles(userNames));
 }
 public void DeleteProfilesThrowsNotImplementedException(FakeProfileProvider sut, ProfileInfoCollection profiles)
 {
   Assert.Throws<NotImplementedException>(() => sut.DeleteProfiles(profiles));
 }
 public void DeleteInactiveProfilesThrowsNotImplementedException(FakeProfileProvider sut, ProfileAuthenticationOption option, DateTime date)
 {
   Assert.Throws<NotImplementedException>(() => sut.DeleteInactiveProfiles(option, date));
 }