setupTestMethod

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

Extend setting up of test method

Syntax

setupTestMethod(plugin,pluginData)

Description

example

setupTestMethod(plugin,pluginData) extends the setting up of a test method. This method defines how the TestRunner performs test method setup for the single test suite element. The test framework evaluates this method within the scope of the runTest method of the TestRunnerPlugin.

Input Arguments

plugin

Instance of matlab.unittest.plugins.TestRunnerPlugin.

pluginData

Test method setup information, specified as an instance of matlab.unittest.plugins.plugindata.ImplicitFixturePluginData. The test framework uses this information to introspect into the test content.

Examples

expand all

classdef ExamplePlugin < matlab.unittest.plugins.TestRunnerPlugin
   
    methods (Access = protected)
        function setupTestMethod(plugin, pluginData)
            fprintf('### Setting up: %s\n', pluginData.Name)
            setupTestMethod@matlab.unittest.plugins.TestRunnerPlugin...
                (plugin, pluginData);
        end
    end
end

Introduced in R2014a

Was this topic helpful?