public void GetValueForKey_NullKey_ReturnsNull()
 {
     Assert.IsNull(_contributions.GetValueForKey(null));
 }
 public void GetValueForKey_EmptyList_ReturnsNull()
 {
     _contributions = new ContributionCollection();
     Assert.IsNull(_contributions.GetValueForKey(SessionFileType.kContributionsFieldName));
 }
예제 #3
0
 public void GetValueForKey_EmptyList_ReturnsNull()
 {
     _contributions = new ContributionCollection();
     Assert.IsNull(_contributions.GetValueForKey("contributions"));
 }