test_match_sequence_mismatch_content Subroutine

public subroutine test_match_sequence_mismatch_content()

Arguments

None

Calls

proc~~test_match_sequence_mismatch_content~~CallsGraph proc~test_match_sequence_mismatch_content test_match_sequence_mismatch_content ESMF_HConfigCreate ESMF_HConfigCreate proc~test_match_sequence_mismatch_content->ESMF_HConfigCreate ESMF_HConfigDestroy ESMF_HConfigDestroy proc~test_match_sequence_mismatch_content->ESMF_HConfigDestroy anyexceptions anyexceptions proc~test_match_sequence_mismatch_content->anyexceptions assert_that assert_that proc~test_match_sequence_mismatch_content->assert_that false false proc~test_match_sequence_mismatch_content->false interface~mapl_hconfigmatch MAPL_HConfigMatch proc~test_match_sequence_mismatch_content->interface~mapl_hconfigmatch sourcelocation sourcelocation proc~test_match_sequence_mismatch_content->sourcelocation

Source Code

   subroutine test_match_sequence_mismatch_content()
      type(ESMF_HConfig) :: a, b
      logical :: match
      integer :: status

      a = ESMF_HConfigCreate(content='[1, 3, 0]', _RC)
      b = ESMF_HConfigCreate(content='[1, 2, 0]', _RC)

      match = MAPL_HConfigMatch(a, b, _RC)
      @assert_that(match, is(false()))

      call ESMF_HConfigDestroy(a, _RC)
      call ESMF_HConfigDestroy(b, _RC)
   end subroutine test_match_sequence_mismatch_content