See if a few skips are incorrectly associated w/ aspnet/External#18
This commit is contained in:
parent
5a0fb8551b
commit
6d3b5f1978
|
|
@ -8,7 +8,6 @@ using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNetCore.Mvc.Formatters.Xml;
|
using Microsoft.AspNetCore.Mvc.Formatters.Xml;
|
||||||
using Microsoft.AspNetCore.Testing;
|
using Microsoft.AspNetCore.Testing;
|
||||||
using Microsoft.AspNetCore.Testing.xunit;
|
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.Mvc.FunctionalTests
|
namespace Microsoft.AspNetCore.Mvc.FunctionalTests
|
||||||
|
|
@ -62,11 +61,8 @@ namespace Microsoft.AspNetCore.Mvc.FunctionalTests
|
||||||
XmlAssert.Equal(expectedXml, responseData);
|
XmlAssert.Equal(expectedXml, responseData);
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalTheory]
|
[Theory]
|
||||||
// Mono.Xml2.XmlTextReader.ReadText is unable to read the XML. Is this the same bug as aspnet/External#18???
|
[MemberData(nameof(AcceptHeadersData))]
|
||||||
[FrameworkSkipCondition(RuntimeFrameworks.Mono, SkipReason = "aspnet/External#18, DCS issue on Mono")]
|
|
||||||
[InlineData("application/xml-xmlser")]
|
|
||||||
[InlineData("application/xml-dcs")]
|
|
||||||
public async Task PostedSerializableError_IsBound(string acceptHeader)
|
public async Task PostedSerializableError_IsBound(string acceptHeader)
|
||||||
{
|
{
|
||||||
// Arrange
|
// Arrange
|
||||||
|
|
@ -87,11 +83,8 @@ namespace Microsoft.AspNetCore.Mvc.FunctionalTests
|
||||||
XmlAssert.Equal(expectedXml, responseData);
|
XmlAssert.Equal(expectedXml, responseData);
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConditionalTheory]
|
[Theory]
|
||||||
// Mono.Xml2.XmlTextReader.ReadText is unable to read the XML. Is this the same bug as aspnet/External#18???
|
[MemberData(nameof(AcceptHeadersData))]
|
||||||
[FrameworkSkipCondition(RuntimeFrameworks.Mono, SkipReason = "aspnet/External#18, DCS issue on Mono")]
|
|
||||||
[InlineData("application/xml-xmlser")]
|
|
||||||
[InlineData("application/xml-dcs")]
|
|
||||||
public async Task IsReturnedInExpectedFormat(string acceptHeader)
|
public async Task IsReturnedInExpectedFormat(string acceptHeader)
|
||||||
{
|
{
|
||||||
// Arrange
|
// Arrange
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue