// Copyright (c) Six Labors and contributors. // Licensed under the GNU Affero General Public License, Version 3. using Xunit; namespace SixLabors.ImageSharp.Tests.Common { public class ConstantsTests { [Fact] public void Epsilon() { Assert.Equal(0.001f, Constants.Epsilon); } } }