test_tester_3 Program

program~~test_tester_3~~UsesGraph program~test_tester_3 test_tester_3 module~tester tester module~tester->program~test_tester_3 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_3
  use tester
  implicit none

  type(tester_t) :: test

  call test%init()

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

  call test%print()

end program test_tester_3