本文整理汇总了C#中MockHeaders.Clear方法的典型用法代码示例。如果您正苦于以下问题:C# MockHeaders.Clear方法的具体用法?C# MockHeaders.Clear怎么用?C# MockHeaders.Clear使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MockHeaders
的用法示例。
在下文中一共展示了MockHeaders.Clear方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Count_AddSingleValueThenQueryCount_ReturnsValueCountWithSpecialValues
public void Count_AddSingleValueThenQueryCount_ReturnsValueCountWithSpecialValues()
{
MockHeaders headers = new MockHeaders(knownHeader, new MockHeaderParser(typeof(string)));
HttpHeaderValueCollection<string> collection = new HttpHeaderValueCollection<string>(knownHeader, headers,
"special");
Assert.Equal(0, collection.Count);
headers.Add(knownHeader, "value2");
Assert.Equal(1, collection.Count);
headers.Clear();
headers.Add(knownHeader, "special");
Assert.Equal(1, collection.Count);
headers.Add(knownHeader, "special");
headers.Add(knownHeader, "special");
Assert.Equal(3, collection.Count);
}
示例2: CopyTo_AddSingleValue_ContainsSingleValue
public void CopyTo_AddSingleValue_ContainsSingleValue()
{
MockHeaders headers = new MockHeaders(knownHeader, new MockHeaderParser(typeof(Uri)));
HttpHeaderValueCollection<Uri> collection = new HttpHeaderValueCollection<Uri>(knownHeader, headers,
specialValue);
collection.Add(new Uri("http://www.example.org/"));
Uri[] array = new Uri[1];
collection.CopyTo(array, 0);
Assert.Equal(new Uri("http://www.example.org/"), array[0]);
// Now only set the special value: nothing should be added to the array.
headers.Clear();
headers.Add(knownHeader, specialValue.ToString());
array[0] = null;
collection.CopyTo(array, 0);
Assert.Equal(specialValue, array[0]);
}
示例3: MockHeaders
public void Add_AddValueContainingNewLine_NewLineFollowedByWhitespaceIsOKButNewLineFollowedByNonWhitespaceIsRejected()
{
MockHeaders headers = new MockHeaders();
headers.Clear();
headers.Add("custom", "value\r");
Assert.Equal(1, headers.Count());
Assert.Equal(1, headers.First().Value.Count());
Assert.Equal("value\r", headers.First().Value.First());
headers.Clear();
Assert.Throws<FormatException>(() => { headers.Add("custom", new string[] { "valid\n", "invalid\r\nother" }); });
Assert.Equal(1, headers.Count());
Assert.Equal(1, headers.First().Value.Count());
Assert.Equal("valid\n", headers.First().Value.First());
}
示例4: TryAddWithoutValidation_AddEmptyValueString_HeaderWithNoValueAfterParsing
public void TryAddWithoutValidation_AddEmptyValueString_HeaderWithNoValueAfterParsing()
{
MockHeaders headers = new MockHeaders();
// The parser returns 'true' to indicate that it could parse the value (empty values allowed) and an
// value of 'null'. HttpHeaders will remove the header from the collection since the known header doesn't
// have a value.
headers.TryAddWithoutValidation(knownHeader, string.Empty);
Assert.Equal(0, headers.Parser.TryParseValueCallCount);
Assert.Equal(0, headers.Count());
headers.Clear();
headers.TryAddWithoutValidation("custom", (string)null);
Assert.Equal(1, headers.Count());
Assert.Equal(1, headers.First().Value.Count());
Assert.Equal(string.Empty, headers.GetValues("custom").First());
}
示例5: Clear_AddMultipleHeadersAndThenClear_NoHeadersInCollection
public void Clear_AddMultipleHeadersAndThenClear_NoHeadersInCollection()
{
MockHeaders headers = new MockHeaders();
headers.Add(knownHeader, rawPrefix + "1");
headers.TryAddWithoutValidation(knownHeader, rawPrefix + "2");
headers.Add("custom1", "customValue1");
headers.Add("custom2", "customValue2");
headers.Add("custom3", "customValue3");
// Only 1 value should get parsed (call to Add() with known header value).
Assert.Equal(1, headers.Parser.TryParseValueCallCount);
// We added 4 different headers
Assert.Equal(4, headers.Count());
headers.Clear();
Assert.Equal(0, headers.Count());
// The call to Count() triggers a TryParseValue for the TryAddWithoutValidation() value. Clear() should
// not cause any additional parsing operations.
Assert.Equal(2, headers.Parser.TryParseValueCallCount);
}