Test_SimpleMAPLcomp.pf Source File


This file depends on

sourcefile~~test_simplemaplcomp.pf~~EfferentGraph sourcefile~test_simplemaplcomp.pf Test_SimpleMAPLcomp.pf sourcefile~esmf_testcase.f90 ESMF_TestCase.F90 sourcefile~test_simplemaplcomp.pf->sourcefile~esmf_testcase.f90 sourcefile~esmf_testmethod.f90 ESMF_TestMethod.F90 sourcefile~test_simplemaplcomp.pf->sourcefile~esmf_testmethod.f90 sourcefile~esmf_testparameter.f90 ESMF_TestParameter.F90 sourcefile~esmf_testcase.f90->sourcefile~esmf_testparameter.f90 sourcefile~esmf_testmethod.f90->sourcefile~esmf_testcase.f90 sourcefile~esmf_testmethod.f90->sourcefile~esmf_testparameter.f90

Source Code

module Test_SimpleMAPLcomp
   use pfunit
   use ESMF_TestCase_mod
   use ESMF_TestMethod_mod
   use ESMF
   implicit none

contains

   @test(npes=[1,2,0],type=ESMF_TestMethod)
   subroutine test_one(this)
      class (ESMF_TestMethod), intent(inout) :: this

      type (ESMF_VM) :: vm
      integer :: localPet, petCount


      vm = this%getVM()
      call ESMF_VMGet(vm, localPet=localPet, petCount=petCount)

   end subroutine test_one


end module Test_SimpleMAPLcomp