forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContentNegotiationResultTest.cs
More file actions
35 lines (30 loc) · 1.31 KB
/
Copy pathContentNegotiationResultTest.cs
File metadata and controls
35 lines (30 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Net.Http.Headers;
using Microsoft.TestCommon;
using Moq;
namespace System.Net.Http.Formatting
{
public class ContentNegotiationResultTest
{
private readonly MediaTypeFormatter _formatter = new Mock<MediaTypeFormatter>().Object;
private readonly MediaTypeHeaderValue _mediaType = new MediaTypeHeaderValue("app/json");
[Fact]
public void Constructor_WhenFormatterParameterIsNull_Throws()
{
Assert.ThrowsArgumentNull(() => new ContentNegotiationResult(formatter: null, mediaType: null), "formatter");
}
[Fact]
public void MediaTypeProperty()
{
Assert.Reflection.Property(new ContentNegotiationResult(_formatter, _mediaType),
nr => nr.MediaType, _mediaType, allowNull: true, roundTripTestValue: new MediaTypeHeaderValue("foo/bar"));
}
[Fact]
public void FormatterProperty()
{
Assert.Reflection.Property(new ContentNegotiationResult(_formatter, _mediaType),
nr => nr.Formatter, _formatter, allowNull: false, roundTripTestValue: new JsonMediaTypeFormatter());
}
}
}