📷 A modern, cross-platform, 2D Graphics library for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

50 lines
1.3 KiB

// <copyright file="SizeTests.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
namespace ImageSharp.Tests
{
using Xunit;
/// <summary>
/// Tests the <see cref="Size"/> struct.
/// </summary>
public class SizeTests
{
/// <summary>
/// Tests the equality operators for equality.
/// </summary>
[Fact]
public void AreEqual()
{
Size first = new Size(100, 100);
Size second = new Size(100, 100);
Assert.Equal(first, second);
}
/// <summary>
/// Tests the equality operators for inequality.
/// </summary>
[Fact]
public void AreNotEqual()
{
Size first = new Size(0, 100);
Size second = new Size(100, 100);
Assert.NotEqual(first, second);
}
/// <summary>
/// Tests whether the size constructor correctly assign properties.
/// </summary>
[Fact]
public void ConstructorAssignsProperties()
{
Size first = new Size(4, 5);
Assert.Equal(4, first.Width);
Assert.Equal(5, first.Height);
}
}
}