test_tester_2 Program

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

  type(tester_t) :: test

  call test%init()

  call test%assert_equal(1, 2)

  call test%print()

end program test_tester_2