deleteTestSuite Subroutine

public subroutine deleteTestSuite(self)

Destruct a test suite by deallocating its test pointer attribute.

Arguments

Type IntentOptional AttributesName
type(TestSuite), intent(inout) :: self

Contents

Source Code


Source Code

subroutine deleteTestSuite(self)
    !! Destruct a test suite by deallocating its test pointer attribute.
    type(TestSuite), intent(inout) :: self

    deallocate(self%test)
end subroutine deleteTestSuite