Skip to content
Snippets Groups Projects
Commit b3278dff authored by Sebastian Müller's avatar Sebastian Müller 🐈
Browse files

test: fix polynomial test

parent f1bfd804
No related branches found
No related tags found
1 merge request!82add mo_polynomial with tests
Pipeline #279198 passed with stages
in 8 minutes and 19 seconds
......@@ -14,7 +14,6 @@ module test_mo_polynomial
contains
! Test coordinate of a point compared to polygon
@test
subroutine test_polynomial()
real(dp), dimension(1) :: p1
......@@ -23,10 +22,10 @@ module test_mo_polynomial
integer(i4) :: status
@assertEqual(poly_order(p), 4_i4)
@assertEqual(poly_order([1.0_dp]), 1_i4)
@assertEqual(poly_order([1.0_dp]), 0_i4)
p1 = poly_deriv([1.0_dp])
@assertEqual(p1(1), 0_i4)
@assertEqual(p1(1), 0.0_dp, tolerance=tol)
@assertEqual(poly_eval(p, 1.5_dp), 5.5625_dp, tolerance=tol)
......@@ -51,4 +50,4 @@ module test_mo_polynomial
end subroutine test_polynomial
end module test_mo_polynomial
\ No newline at end of file
end module test_mo_polynomial
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment