-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: simple request message usage validation test
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
tests/Unleash.Tests/Communication/RequestMessageHeadersTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using NUnit.Framework; | ||
|
||
namespace Unleash.Tests.Communication | ||
{ | ||
public class RequestMessageHeadersTest | ||
{ | ||
[Test] | ||
public void RequestMessageHeaders_Should_Contain_Headers() | ||
{ | ||
var requestMessage = new HttpRequestMessage(); | ||
requestMessage.Headers.TryAddWithoutValidation("header1", "value1"); | ||
requestMessage.Headers.TryAddWithoutValidation("header1", "value2"); | ||
|
||
Assert.That(requestMessage.Headers.Count, Is.EqualTo(1)); | ||
Assert.That(requestMessage.Headers.First().Key, Is.EqualTo("header1")); | ||
Assert.That(requestMessage.Headers.First().Value.Last(), Is.EqualTo("value2")); | ||
} | ||
} | ||
} |