Files
PowerToys/ImageResizer/test/ImageResizer.Test/Models/CustomSizeTests.cs
Clint Rutkas 5310866120 getting stuff to work
headers and trailing commas

adding braces

updated encoder
2020-01-03 10:19:26 -08:00

23 lines
578 B
C#

// Copyright (c) Brice Lambson
// The Brice Lambson licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information. Code forked from Brice Lambson's https://github.com/bricelam/ImageResizer/
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);
}
}
}