42 lines
1.0 KiB
C#
42 lines
1.0 KiB
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 Microsoft.AspNetCore.Testing.xunit;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AspNetCore.Razor.Evolution.IntegrationTests
|
|
{
|
|
public class HtmlAttributeIntegrationTest : IntegrationTestBase
|
|
{
|
|
[Fact]
|
|
public void HtmlWithDataDashAttribute()
|
|
{
|
|
// Arrange
|
|
var engine = RazorEngine.Create();
|
|
|
|
var document = CreateCodeDocument();
|
|
|
|
// Act
|
|
engine.Process(document);
|
|
|
|
// Assert
|
|
AssertIRMatchesBaseline(document.GetIRDocument());
|
|
}
|
|
|
|
[Fact]
|
|
public void HtmlWithConditionalAttribute()
|
|
{
|
|
// Arrange
|
|
var engine = RazorEngine.Create();
|
|
|
|
var document = CreateCodeDocument();
|
|
|
|
// Act
|
|
engine.Process(document);
|
|
|
|
// Assert
|
|
AssertIRMatchesBaseline(document.GetIRDocument());
|
|
}
|
|
}
|
|
}
|