public void ReturnsIsFalseWhenSourceTypeIsNotNameValueCollection() { var tp = new TypePair(typeof(Object), typeof(NameValueCollection)); var nvcm = new NameValueCollectionMapper(); var result = nvcm.IsMatch(tp); result.ShouldBeFalse(); }
public void ReturnsTrueWhenBothSourceAndDestinationTypesAreNameValueCollection() { var tp = new TypePair(typeof(NameValueCollection), typeof(NameValueCollection)); var nvcm = new NameValueCollectionMapper(); var result = nvcm.IsMatch(tp); result.ShouldBeTrue(); }
public void ReturnsTrueWhenBothSourceAndDestinationTypesAreNameValueCollection() { var rc = new ResolutionContext(null, null, null, typeof(NameValueCollection), typeof(NameValueCollection), null); var nvcm = new NameValueCollectionMapper(); var result = nvcm.IsMatch(rc); result.ShouldBeTrue(); }
public void ReturnsIsFalseWhenSourceTypeIsNotNameValueCollection() { var rc = new ResolutionContext(null, null, null, typeof(Object), typeof(NameValueCollection), null); var nvcm = new NameValueCollectionMapper(); var result = nvcm.IsMatch(rc); result.ShouldBeFalse(); }
public void ReturnsIsFalseWhenDestinationTypeIsNotNameValueCollection() { var rc = new ResolutionContext(null, null, null, typeof(NameValueCollection), typeof(Object), null); var nvcm = new NameValueCollectionMapper(); var result = nvcm.IsMatch(rc); Assert.IsFalse(result); }