// // Copyright (c) James Jackson-South and contributors. // Licensed under the Apache License, Version 2.0. // namespace ImageSharp.Tests.Common { using Xunit; public class ConstantsTests { [Fact] public void Epsilon() { Assert.Equal(0.001f, Constants.Epsilon); } } }