diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-04-30 00:52:06 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 00:52:06 -0600 |
commit | f071fcc750da95e008f622d96fb033a4b0f73039 (patch) | |
tree | 787ab0d77c9db8a6c2982cd1b994e7bf88731f5f /hello_complex/tests | |
parent | a8dabeea48210450e6b1088c95abf80358f40e3c (diff) | |
parent | d6e5d3055946e58bd17dfc156bcffe88ef08b5dd (diff) | |
download | fpm-f071fcc750da95e008f622d96fb033a4b0f73039.tar.gz fpm-f071fcc750da95e008f622d96fb033a4b0f73039.zip |
Merge pull request #54 from everythingfunctional/AdditionalTesting
Additional testing
Diffstat (limited to 'hello_complex/tests')
-rw-r--r-- | hello_complex/tests/farewell/farewell_test.f90 | 18 | ||||
-rw-r--r-- | hello_complex/tests/greet/greet_test.f90 | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/hello_complex/tests/farewell/farewell_test.f90 b/hello_complex/tests/farewell/farewell_test.f90 new file mode 100644 index 0000000..0f21b18 --- /dev/null +++ b/hello_complex/tests/farewell/farewell_test.f90 @@ -0,0 +1,18 @@ +program farewell_test + use farewell_m, only: make_farewell + use iso_fortran_env, only: error_unit, output_unit + + implicit none + + character(len=:), allocatable :: farewell + + allocate(character(len=0) :: farewell) + farewell = make_farewell("World") + + if (farewell == "Goodbye, World!") then + write(output_unit, *) "Passed" + else + write(error_unit, *) "Failed" + call exit(1) + end if +end program farewell_test diff --git a/hello_complex/tests/greet/greet_test.f90 b/hello_complex/tests/greet/greet_test.f90 new file mode 100644 index 0000000..41fa508 --- /dev/null +++ b/hello_complex/tests/greet/greet_test.f90 @@ -0,0 +1,18 @@ +program greet_test + use greet_m, only: make_greeting + use iso_fortran_env, only: error_unit, output_unit + + implicit none + + character(len=:), allocatable :: greeting + + allocate(character(len=0) :: greeting) + greeting = make_greeting("World") + + if (greeting == "Hello, World!") then + write(output_unit, *) "Passed" + else + write(error_unit, *) "Failed" + call exit(1) + end if +end program greet_test |