Definition at line 68 of file test_framework_routines.f90.
subroutine test_framework_routines::test_framework_assert_equals::test_framework_assert_equals_dp |
( |
real(dp), dimension(:), intent(in) |
EXPECTED_VALUE, |
|
|
real(dp), dimension(:), intent(in) |
ACTUAL_VALUE, |
|
|
integer(intg), intent(out) |
ERR |
|
) |
| |
|
private |
Check if the actual real(DP) values is as expected.
- Parameters
-
[in] | expected_value | expected value |
[in] | actual_value | actual value |
[out] | err | The error code |
Definition at line 164 of file test_framework_routines.f90.
subroutine test_framework_routines::test_framework_assert_equals::test_framework_assert_equals_dp1 |
( |
real(dp), intent(in) |
EXPECTED_VALUE, |
|
|
real(dp), intent(in) |
ACTUAL_VALUE, |
|
|
integer(intg), intent(out) |
ERR |
|
) |
| |
|
private |
Check if the actual real(DP) value is as expected.
- Parameters
-
[in] | expected_value | expected value |
[in] | actual_value | actual value |
[out] | err | The error code |
Definition at line 112 of file test_framework_routines.f90.
subroutine test_framework_routines::test_framework_assert_equals::test_framework_assert_equals_dp2 |
( |
real(dp), intent(in) |
EXPECTED_VALUE, |
|
|
real(dp), intent(in) |
ACTUAL_VALUE, |
|
|
real(dp), intent(in) |
TOLERANCE, |
|
|
integer(intg), intent(out) |
ERR |
|
) |
| |
|
private |
Check if the actual real(DP) value is as expected.
- Parameters
-
[in] | expected_value | expected value |
[in] | actual_value | actual value |
[out] | err | The error code |
Definition at line 136 of file test_framework_routines.f90.
subroutine test_framework_routines::test_framework_assert_equals::test_framework_assert_equals_intg |
( |
integer(intg), intent(in) |
EXPECTED_VALUE, |
|
|
integer(intg), intent(in) |
ACTUAL_VALUE, |
|
|
integer(intg), intent(out) |
ERR |
|
) |
| |
|
private |
Check if the actual integer value is as expected.
- Parameters
-
[in] | expected_value | expected value |
[in] | actual_value | actual value |
[out] | err | The error code |
Definition at line 85 of file test_framework_routines.f90.