test_tester_4 Program

program~~test_tester_4~~UsesGraph program~test_tester_4 test_tester_4 module~tester tester module~tester->program~test_tester_4 iso_fortran_env iso_fortran_env iso_fortran_env->module~tester
Help


Source Code


Variables

Type AttributesNameInitial
type(tester_t) :: test

Source Code

program test_tester_4
  use tester
  implicit none

  type(tester_t) :: test

  call test%init()

  call test%assert_equal(.true., 1>2)

  call test%print()

end program test_tester_4