Skip to content

Commit

Permalink
Update Test_fortran_test_framework_mod.f90
Browse files Browse the repository at this point in the history
  • Loading branch information
amstokely authored Dec 19, 2024
1 parent 7abfabc commit 3292495
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions test/fortran/Test_fortran_test_framework_mod.f90
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ end subroutine assert_mock
! - Asserts equality of integers using both the mock assertion handler (`assert_mock`)
! and the default `assert` procedure.
! - Verifies correct handling of equal and unequal integer values.
!
! Notes:
! - Ensures the `assertEqual` subroutine behaves as expected for integer inputs.
subroutine test_assertEqual_integer()
integer :: status
call assertEqual(1, 1, status, assert_mock)
Expand All @@ -52,9 +49,6 @@ end subroutine test_assertEqual_integer
! - Asserts equality of logical values (`.true.` and `.false.`) using both the mock
! assertion handler (`assert_mock`) and the default `assert` procedure.
! - Verifies correct handling of equal and unequal logical values.
!
! Notes:
! - Ensures the `assertEqual` subroutine behaves as expected for logical inputs.
subroutine test_assertEqual_logical()
integer :: status
call assertEqual(.true., .true., status, assert_mock)
Expand All @@ -71,9 +65,6 @@ end subroutine test_assertEqual_logical
! - Asserts equality of strings using both the mock assertion handler (`assert_mock`)
! and the default `assert` procedure.
! - Verifies correct handling of equal and unequal string values.
!
! Notes:
! - Ensures the `assertEqual` subroutine behaves as expected for string inputs.
subroutine test_assertEqual_string()
integer :: status
call assertEqual("a", "a", status, assert_mock)
Expand All @@ -83,4 +74,4 @@ subroutine test_assertEqual_string()
call assertEqual(1, status, status, assert)
end subroutine test_assertEqual_string

end module Test_fortran_test_framework_mod
end module Test_fortran_test_framework_mod

0 comments on commit 3292495

Please sign in to comment.