teardown Subroutine

public subroutine teardown(this)

Arguments

Type IntentOptional Attributes Name
class(MpiTestMethod), intent(inout) :: this

Calls

proc~~teardown~~CallsGraph proc~teardown teardown ESMF_GridCompDestroy ESMF_GridCompDestroy proc~teardown->ESMF_GridCompDestroy assert_that assert_that proc~teardown->assert_that

Called by

proc~~teardown~~CalledByGraph proc~teardown teardown proc~test_finalize_children test_finalize_children proc~test_finalize_children->proc~teardown proc~test_init_children test_init_children proc~test_init_children->proc~teardown proc~test_mapl_runchild test_MAPL_RunChild proc~test_mapl_runchild->proc~teardown proc~test_mapl_runchild_other_phase test_MAPL_RunChild_other_phase proc~test_mapl_runchild_other_phase->proc~teardown

Source Code

   subroutine teardown(this)
      class(MpiTestMethod), intent(inout) :: this
      integer :: status
      call ESMF_GridCompDestroy(parent_gc, rc=status)
      @assert_that(status, is(0))
   end subroutine teardown