mirror of https://github.com/SixLabors/ImageSharp
1 changed files with 19 additions and 0 deletions
@ -0,0 +1,19 @@ |
|||
// <copyright file="ConstantsTests.cs" company="James Jackson-South">
|
|||
// Copyright (c) James Jackson-South and contributors.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
// </copyright>
|
|||
|
|||
namespace ImageSharp.Tests.Common |
|||
{ |
|||
using ImageSharp.Common; |
|||
using Xunit; |
|||
|
|||
public class ConstantsTests |
|||
{ |
|||
[Fact] |
|||
public void Epsilon() |
|||
{ |
|||
Assert.Equal(Constants.Epsilon, 0.001f); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue