test_reproducer_from_history Subroutine

public subroutine test_reproducer_from_history()

Arguments

None

Calls

proc~~test_reproducer_from_history~~CallsGraph proc~test_reproducer_from_history test_reproducer_from_history ESMF_HConfigCreate ESMF_HConfigCreate proc~test_reproducer_from_history->ESMF_HConfigCreate ESMF_HConfigDestroy ESMF_HConfigDestroy proc~test_reproducer_from_history->ESMF_HConfigDestroy anyexceptions anyexceptions proc~test_reproducer_from_history->anyexceptions assert_that assert_that proc~test_reproducer_from_history->assert_that interface~mapl_hconfigmatch MAPL_HConfigMatch proc~test_reproducer_from_history->interface~mapl_hconfigmatch sourcelocation sourcelocation proc~test_reproducer_from_history->sourcelocation true true proc~test_reproducer_from_history->true

Source Code

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

      a = ESMF_HConfigCreate(content='{geom: {class: latlon}, collection_name: c1}', _RC)
      b = ESMF_HConfigCreate(content='{geom: {class: latlon}, collection_name: c1}', _RC)

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

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