teardownTestMethod

Class: matlab.unittest.plugins.TestRunnerPlugin
Package: matlab.unittest.plugins

Extend tearing down test method

Description

example

teardownTestMethod(plugin,pluginData) extends the tearing down of a test method. This method defines how the TestRunner performs test method teardown for a single test suite element. The testing framework evaluates this method within the scope of the runTest method of TestRunnerPlugin.

Input Arguments

plugin

Plugin object, specified as an instance of the matlab.unittest.plugins.TestRunnerPlugin class.

pluginData

Test method teardown information, specified as an instance of the matlab.unittest.plugins.plugindata.ImplicitFixturePluginData class. The testing framework uses this information to describe the test content to the plugin.

Examples

expand all

Display the test method name at teardown time.

classdef ExamplePlugin < matlab.unittest.plugins.TestRunnerPlugin
    methods (Access = protected)
        function teardownTestMethod(plugin, pluginData)
            fprintf('### Tearing down: %s\n', pluginData.Name)
            teardownTestMethod@matlab.unittest.plugins.TestRunnerPlugin...
                (plugin, pluginData);
        end
    end
end
Introduced in R2014a