25 lines
706 B
C#
25 lines
706 B
C#
// 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 Xunit;
|
|
|
|
namespace Microsoft.AspNetCore.TestHost
|
|
{
|
|
public class ResponseFeatureTests
|
|
{
|
|
[Fact]
|
|
public void StatusCode_DefaultsTo200()
|
|
{
|
|
// Arrange & Act
|
|
var responseInformation = new ResponseFeature();
|
|
|
|
// Assert
|
|
Assert.Equal(200, responseInformation.StatusCode);
|
|
Assert.False(responseInformation.HasStarted);
|
|
|
|
responseInformation.FireOnSendingHeaders();
|
|
|
|
Assert.True(responseInformation.HasStarted);
|
|
}
|
|
}
|
|
} |