a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
23 lines
625 B
C#
23 lines
625 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
using System.Web.Razor.Text;
|
|
using Xunit;
|
|
|
|
namespace System.Web.Razor.Test.Text
|
|
{
|
|
public class SourceLocationTest
|
|
{
|
|
[Fact]
|
|
public void ConstructorWithLineAndCharacterIndexSetsAssociatedProperties()
|
|
{
|
|
// Act
|
|
SourceLocation loc = new SourceLocation(0, 42, 24);
|
|
|
|
// Assert
|
|
Assert.Equal(0, loc.AbsoluteIndex);
|
|
Assert.Equal(42, loc.LineIndex);
|
|
Assert.Equal(24, loc.CharacterIndex);
|
|
}
|
|
}
|
|
}
|