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));
 }