40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|||
|
|
|||
|
using Moq;
|
|||
|
using Xunit;
|
|||
|
using Assert = Microsoft.TestCommon.AssertEx;
|
|||
|
|
|||
|
namespace System.Web.WebPages.Test
|
|||
|
{
|
|||
|
public class DisplayInfoTest
|
|||
|
{
|
|||
|
[Fact]
|
|||
|
public void GuardClauses()
|
|||
|
{
|
|||
|
// Act & Assert
|
|||
|
Assert.ThrowsArgumentNull(() => new DisplayInfo(filePath: null, displayMode: new Mock<IDisplayMode>().Object), "filePath");
|
|||
|
Assert.ThrowsArgumentNull(() => new DisplayInfo("testPath", displayMode: null), "displayMode");
|
|||
|
}
|
|||
|
|
|||
|
public void ConstructorSetsDisplayInfoProperties()
|
|||
|
{
|
|||
|
// Arrange
|
|||
|
string path = "testPath";
|
|||
|
IDisplayMode displayMode = new Mock<IDisplayMode>().Object;
|
|||
|
|
|||
|
// Act
|
|||
|
DisplayInfo info = new DisplayInfo(path, displayMode);
|
|||
|
|
|||
|
// Assert
|
|||
|
Assert.Equal(path, info.FilePath);
|
|||
|
Assert.Equal(displayMode, info.DisplayMode);
|
|||
|
}
|
|||
|
|
|||
|
public void ConstructorSetsEmptyFilePath()
|
|||
|
{
|
|||
|
// Act & Assert
|
|||
|
Assert.Equal(String.Empty, new DisplayInfo(String.Empty, new Mock<IDisplayMode>().Object).FilePath);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|