test_result_t Interface

public interface test_result_t

Functions

private elemental module function construct_from_character(description, passed) result(test_result)

The result is a test_result_t object with the components defined by the dummy arguments

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: description
logical, intent(in) :: passed

Return Value type(test_result_t)

private elemental module function construct_from_string(description, passed) result(test_result)

The result is a test_result_t object with the components defined by the dummy arguments

Arguments

Type IntentOptional Attributes Name
type(string_t), intent(in) :: description
logical, intent(in) :: passed

Return Value type(test_result_t)