workflow setup
.NET Test / .NET tests (push) Successful in 1m17s

This commit is contained in:
2026-09-13 17:38:25 +04:00
parent fbb7b0ad84
commit 68d15402ad
3 changed files with 96 additions and 6 deletions
@@ -0,0 +1,16 @@
using Shouldly;
using Xunit;
namespace Just.PreciseMath.Tests;
public class DoubleDoubleTests
{
[Fact]
public void OneHasExpectedComponents()
{
DoubleDouble value = DoubleDouble.One;
value.High.ShouldBe(1.0);
value.Low.ShouldBe(0.0);
}
}