mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
23 lines
479 B
C#
23 lines
479 B
C#
// <copyright file="CustomSizeTests.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
using ImageResizer.Properties;
|
|
using Xunit;
|
|
|
|
namespace ImageResizer.Models
|
|
{
|
|
public class CustomSizeTests
|
|
{
|
|
[Fact]
|
|
public void Name_works()
|
|
{
|
|
var size = new CustomSize();
|
|
|
|
size.Name = "Ignored";
|
|
|
|
Assert.Equal(Resources.Input_Custom, size.Name);
|
|
}
|
|
}
|
|
}
|