Fortran Unit Test Syntax
Last updated on 2026-01-06 | Edit this page
Overview
Questions
- What is the syntax of writing a unit test in Fortran?
- How do I build my tests with my existing build system?
Objectives
- Able to write a unit test for a Fortran procedure with test-drive, veggies and/or pFUnit.
- Understand the similarities between each framework and where they differ.
What framework will we look at?
There are multiple frameworks available for writing unit tests in Fortran, as detailed on the Fortran Lang website. However, we recommend the use of pFUnit as it is…
- the most feature rich framework.
- the most widely used framework.
- being maintained.
- able to integrate with CMake and make.
Key features of pFUnit:
- Supports MPI: Supports testing MPI parallelized code, including parametrizing tests by number of MPI ranks.
-
Simple interface: Tests are written in
.pfformat which is then pre-processed by a tool provided by pFUnit into.f90before compilation. This removes the need to write a lot of boilerplate code.
The structure of a test module
All test modules share a basic structure…
F90
module test_something
! use funit
! use the src to be tested
implicit none
! Derived types: Define types to act as test parameters and test cases.
contains
! Test Suite: Define a test suite (collection of tests) to be returned from a procedure.
! Test Logic: Define the actual test execution code which will call the src and execute assertions.
! Type Constructors: Define constructors for your derived types (test parameters/cases).
end module test_something
Let’s dive into the syntax
We will continue to use the temperature conversion example from the previous episode to cover the syntax of pFUnit.
This uses standard Fortran syntax to define some derived types.
Test parameters
The test parameter type should contain the inputs and expected outputs of the code we are testing.
Treat the src to be tested like a black box
When writing a unit test,
- The inputs and outputs are the important aspects to understand about our src code to be tested.
- The implementation should not influence how we write our test. Not every test needs to be parametrized, but you will always need to consider the inputs and outputs of the src code you are testing.
Firstly, the test parameter derived-type is written as…
F90
@testParameter
type, extends(AbstractTestParameter) :: my_test_params
integer :: input, expected_output
contains
procedure :: toString => my_test_params_toString
end type my_test_params
Key points:
- Our parameter type must be decorated with @testParameter so that the pFUnit pre-processor understands that this derived type defines a test parameter.
- We must extend one of the base types provided by pFUnit, in this case AbstractTestParameter which is the most generic.
- We have declared a type-bound procedure toString which maps to the procedure my_test_params_toString. This allows pFUnit to log a helpful description of our parameter set which should be returned from my_test_params_toString (we’ll see more on this later).
Test case
Then we can write our test case derived-type as…
F90
@TestCase(constructor=my_test_params_to_my_test_case, testParameters={my_test_suite()})
type, extends(ParameterizedTestCase) :: my_test_case
type(my_test_params) :: params
end type my_test_case
Key points:
- Our parameter type must be decorated with @TestCase so that the pFUnit pre-processor understands that this derived type defines a test case.
- The @TestCase
decorator includes some extra information to tell the pre-processor how
the test case should be constructed. What we have defined is…
- To convert from an instance of my_test_params to an instance of my_test_case, one must call my_test_params_to_my_test_case.
- The list of parameter sets which define each individual parametrized test will be returned from the function my_test_suite
- Just like with the test parameter type, we must extend one of the base types provided by pFUnit, in this case ParameterizedTestCase which indicates that this test should be parametrized.
- We then define a single type-bound value which is of the test parameter type we have just defined.
Challenge: Add derived types to pFUnit tests of temperature conversions
Continuing with part two of 3-writing-your-first-unit-test/challenge from the exercises repo. Begin re-writing your standard Fortran test using pFUnit. First, add some derived types to the provided template file, test_temp_conversions.pf.
These types could look something like this…
F90
!> Test parameter type to package the test parameters
@TestParameter
type, extends(AbstractTestParameter) :: temp_conversions_test_params_t
!> The temperature to input into the function being tested
real :: input
!> Theb temperature expected to be returned from the function being tested
real :: expected_output
!> A description of the test to be outputted for logging
character(len=100) :: description
contains
procedure :: toString => temp_conversions_test_params_t_toString
end type temp_conversions_test_params_t
!> Test case type to specify the style of test (paramaterized)
@TestCase(constructor=new_test_case)
type, extends(ParameterizedTestCase) :: temp_conversions_test_case_t
type(temp_conversions_test_params_t) :: params
end type temp_conversions_test_case_t
A full solution is provided in 3-writing-your-first-unit-test/solution.
In this section we define our parameter sets (or test suite). We define a function which returns our test parameters like so…
F90
function my_test_suite() result(params)
type(my_test_params), allocatable :: params(:)
params = [ &
my_test_params(1, 2), & ! Given input is 1, output is 2
my_test_params(3, 4) & ! Given input is 3, output is 4
]
end function my_test_suite
Key points:
- The function returns an array of my_test_params.
- We are using a constructor function to define each parameter set which we do not need to define ourselves.
Challenge: Add a test suite to pFUnit tests of temperature conversions
Continuing with your pFUnit test of temp_conversions,
add a test suite for tests of the function
fahrenheit_to_celsius in the indicated section of the
template file, test_temp_conversions.pf
This test suites could look something like this…
F90
!> Test Suite for tests of fahrenheit_to_celsius
function fahrenheit_to_celsius_testsuite() result(params)
!> An array of test parameters, each specifying an individual test
class(temp_conversions_test_params_t), allocatable :: params(:)
params = [ &
temp_conversions_test_params_t(0.0, -17.777779, "0.0 °F"), &
temp_conversions_test_params_t(32.0, 0.0, "0.0 °C"), &
temp_conversions_test_params_t(-100.0, -73.333336, "100 °F"), &
temp_conversions_test_params_t(1.23,-17.094444, "Decimal °F") &
]
end function fahrenheit_to_celsius_testsuite
A full solution is provided in 3-writing-your-first-unit-test/solution.
This is where we actually call our src procedure and carry out assertions…
F90
@Test
subroutine TestMySrcProcedure(this)
class (my_test_case), intent(inout) :: this
integer :: actual_output
call my_src_procedure(this%params%input, actual_output)
@assertEqual(this%params%expected_output, actual_output, "Unexpected output from my_src_procedure")
end subroutine TestMySrcProcedure
Key points:
- We must decorate the test subroutine with the pFUnit annotation @Test so the pre-processor knows this is a test.
- We are utilising a pre-processor directive provided by pFUnit
@assertEqual which allows
the exact comparison of two values (also works for comparing arrays).
For a full list of the available assertion directives see pFUnit
documentation page for their preprocessor directives
- As is done here, it is recommended to provide a helpful message in case of an assertion failing to help diagnose the issue.
Parametrize on a test by test basis
It is also possible to parametrize a test at this point, instead of when defining the derived-types. This can be useful if you wish to reuse a test parameter type for multiple test cases…
Challenge: Add a test function to pFUnit tests of temperature conversions
Continuing with your pFUnit test of temp_conversions,
add some test logic for tests of the function
fahrenheit_to_celsius in the indicated section of the
template file, test_temp_conversions.pf
This test logic could look something like this…
F90
!> Test Logic, unit test subroutine for fahrenheit_to_celsius
@Test(testParameters={fahrenheit_to_celsius_testsuite()})
subroutine test_fahrenheit_to_celsius(this)
!> The test case which indicates the type of test we are running
class(temp_conversions_test_case_t), intent(inout) :: this
character(len=200) :: failure_message
real :: actual_output
! Get the actual celsius value returned from fahrenheit_to_celsius
actual_output = fahrenheit_to_celsius(this%params%input)
! Populate the failure message
write(failure_message, '(A,F7.2,A,F7.2,A,F7.2,A)') "Failed With ", this%params%input, " °F: Expected ", &
this%params%expected_output, "°C but got ", actual_output, "°C"
@assertEqual(this%params%expected_output, actual_output, tolerance=1e-6, message=trim(failure_message))
end subroutine test_fahrenheit_to_celsius
A full solution is provided in 3-writing-your-first-unit-test/solution.
We are required to define two functions.
A conversion from test parameters to a test case:
F90
function my_test_params_to_my_test_case(testParameter) result(tst)
type (my_test_case) :: tst
type (my_test_params), intent(in) :: testParameter
tst%params = testParameter
end function my_test_params_to_my_test_case
It may be necessary to individually map each type-bound value within the testParameter to that in the tst, depending on their complexity.
A conversion from test parameters to a string:
This function helps to provide a clearer description of each test case. The result of this function will be displayed alongside the name of the test for each parameter set.
F90
function my_test_params_toString(testParameter) result(string)
class (my_test_params), intent(in) :: this
character(:), allocatable :: string
character(len=80) :: buffer
write(buffer,'("Given ",i4," we expect to get ",i4)') this%input, this%expected_output
string = trim(buffer)
end function my_test_params_toString
Challenge: Add type constructors to pFUnit tests of temperature conversions
Continuing with your pFUnit test of temp_conversions,
add some type constructors for tests of the
temp_conversions in the indicated section of the template
file, test_temp_conversions.pf
These type constructors could look something like this…
F90
!> Constructor for converting test parameters into a test case
function new_test_case(testParameter) result(tst)
!> The parameters to be converted to a test case
type(temp_conversions_test_params_t), intent(in) :: testParameter
!> The test case to return after conversion from parameters
type(temp_conversions_test_case_t) :: tst
tst%params = testParameter
end function new_test_case
!> Constructor for converting test parameters into a string
function temp_conversions_test_params_t_toString(this) result(string)
!> The parameters to be converted to a string
class(temp_conversions_test_params_t), intent(in) :: this
character(:), allocatable :: string
string = trim(this%description)
end function temp_conversions_test_params_t_toString
A full solution is provided in 3-writing-your-first-unit-test/solution.
Challenge: Test temperature conversions using pFUnit
Finalising your pFUnit test of temp_conversions, add an additional test of the function celsius_to_kelvin.
The full solution is provided in 3-writing-your-first-unit-test/solution.