diff --git a/tests/ImageSharp.Tests/Common/ConstantsTests.cs b/tests/ImageSharp.Tests/Common/ConstantsTests.cs new file mode 100644 index 000000000..d1ca6cd02 --- /dev/null +++ b/tests/ImageSharp.Tests/Common/ConstantsTests.cs @@ -0,0 +1,19 @@ +// +// Copyright (c) James Jackson-South and contributors. +// Licensed under the Apache License, Version 2.0. +// + +namespace ImageSharp.Tests.Common +{ + using ImageSharp.Common; + using Xunit; + + public class ConstantsTests + { + [Fact] + public void Epsilon() + { + Assert.Equal(Constants.Epsilon, 0.001f); + } + } +}