tem_tools_test Program

Uses

  • program~~tem_tools_test~~UsesGraph program~tem_tools_test tem_tools_test module~env_module env_module program~tem_tools_test->module~env_module module~tem_tools_module tem_tools_module program~tem_tools_test->module~tem_tools_module module~tem_float_module tem_float_module program~tem_tools_test->module~tem_float_module mpi mpi module~env_module->mpi module~flu_binding flu_binding module~env_module->module~flu_binding iso_fortran_env iso_fortran_env module~env_module->iso_fortran_env module~aotus_module aotus_module module~env_module->module~aotus_module module~tem_tools_module->module~env_module module~tem_float_module->module~env_module

Calls

program~~tem_tools_test~~CallsGraph program~tem_tools_test tem_tools_test proc~test_character test_character program~tem_tools_test->proc~test_character proc~test_int test_int program~tem_tools_test->proc~test_int proc~test_real test_real program~tem_tools_test->proc~test_real proc~test_long test_long program~tem_tools_test->proc~test_long proc~test_logical test_logical program~tem_tools_test->proc~test_logical interface~tem_getoptvalordef tem_getOptValOrDef proc~test_character->interface~tem_getoptvalordef proc~test_int->interface~tem_getoptvalordef proc~test_real->interface~tem_getoptvalordef proc~test_long->interface~tem_getoptvalordef proc~test_logical->interface~tem_getoptvalordef proc~tem_getoptvalordef_real tem_getoptvalordef_real interface~tem_getoptvalordef->proc~tem_getoptvalordef_real proc~tem_getoptvalordef_int tem_getoptvalordef_int interface~tem_getoptvalordef->proc~tem_getoptvalordef_int proc~tem_getoptvalordef_char tem_getoptvalordef_char interface~tem_getoptvalordef->proc~tem_getoptvalordef_char proc~tem_getoptvalordef_logical tem_getoptvalordef_logical interface~tem_getoptvalordef->proc~tem_getoptvalordef_logical proc~tem_getoptvalordef_long tem_getoptvalordef_long interface~tem_getoptvalordef->proc~tem_getoptvalordef_long

Contents

Source Code


Variables

Type AttributesNameInitial
logical :: res =.true.

Functions

function test_character(char) result(res)

Arguments

Type IntentOptional AttributesName
character, intent(in), optional :: char

Return Value character

function test_int(int) result(res)

Arguments

Type IntentOptional AttributesName
integer, intent(in), optional :: int

Return Value integer

function test_logical(bool) result(res)

Arguments

Type IntentOptional AttributesName
logical, intent(in), optional :: bool

Return Value logical

function test_long(long) result(res)

Arguments

Type IntentOptional AttributesName
integer(kind=long_k), intent(in), optional :: long

Return Value integer(kind=long_k)

function test_real(float) result(res)

Arguments

Type IntentOptional AttributesName
real(kind=rk), intent(in), optional :: float

Return Value real(kind=rk)


Source Code

program tem_tools_test

  use env_module,       only: rk, long_k
  use tem_tools_module, only: tem_getOptValOrDef
  use tem_float_module, only: operator(.feq.)

  implicit none

  logical :: res = .true.

  res = res .and. test_character() == 'X'
  res = res .and. test_character('Y') =='Y'
  res = res .and. test_int() == 42
  res = res .and. test_int(23) == 23
  res = res .and. test_logical() .eqv. .true.
  res = res .and. test_logical(.false.) .eqv. .false.
  res = res .and. test_long() == 42_long_k
  res = res .and. test_long(23_long_k) == 23_long_k
  res = res .and. (test_real() .feq. 4.2_rk)
  res = res .and. (test_real(2.3_rk) .feq. 2.3_rk)

  if(res) write(*,*) 'PASSED'

contains

  function test_character(char) result(res)
    character :: res
    character, intent(in), optional :: char
    res = tem_getOptValOrDef(char,'X')
  end function

  function test_int(int) result(res)
    integer :: res
    integer, intent(in), optional :: int
    res = tem_getOptValOrDef(int,42)
  end function

  function test_logical(bool) result(res)
    logical :: res
    logical, intent(in), optional :: bool
    res = tem_getOptValOrDef(bool,.true.)
  end function

  function test_long(long) result(res)
    integer(kind=long_k) :: res
    integer(kind=long_k), intent(in), optional :: long
    res = tem_getOptValOrDef(long,42_long_k)
  end function

  function test_real(float) result(res)
    real(kind=rk) :: res
    real(kind=rk), intent(in), optional :: float
    res = tem_getOptValOrDef(float,4.2_rk)
  end function

end program tem_tools_test